home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / os2db2.zip / SHUTDOWN.HPP < prev    next >
Text File  |  1994-09-03  |  1KB  |  43 lines

  1.  /******************************************************
  2. *  SHUTDOWN.HPP - SHUTDOWN CLASS                        *
  3.  ******************************************************/
  4.  
  5. #ifndef   SHUTDOWN_CLASS
  6. #define   SHUTDOWN_CLASS                              // shutdown class
  7.  
  8. CLASS     COMMAND;                                    // command class
  9.  
  10. CLASS     SHUTDOWN {                                  // shutdown class
  11. PUBLIC:
  12. UNIQUE    /**/      SHUTDOWN(VOID);                   // a constructor
  13. UNIQUE    /**/     ~SHUTDOWN(VOID);                   // a ~destructor
  14. PUBLIC:
  15. UNIQUE    VOID      startThreads(COMMAND *comMand);   // start threads
  16. UNIQUE    VOID      cycleThreads(COMMAND *comMand);   // cycle threads
  17. PUBLIC:
  18. UNIQUE    LONG      stopDB2Manager(VOID);             // stop DB2 manager
  19. UNIQUE    LONG      stopDB2Clients(VOID);             // stop DB2 clients
  20. UNIQUE    LONG      stopFileSystem(VOID);             // stop file system
  21. };
  22.  
  23.  /******************************************************
  24. *  SHUTDOWN::SHUTDOWN - a constructor                   *
  25.  ******************************************************/
  26.  
  27. INLINE SHUTDOWN::SHUTDOWN(VOID)
  28.  
  29. {
  30. }
  31.  
  32.  /******************************************************
  33. *  SHUTDOWN::~SHUTDOWN - a destructor                   *
  34.  ******************************************************/
  35.  
  36. INLINE SHUTDOWN::~SHUTDOWN(VOID)
  37.  
  38. {
  39. }
  40.  
  41. #endif                                                // shutdown class
  42.  
  43.