home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / smxdemo / smxpp / process.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-10  |  937 b   |  40 lines

  1. /*************************************************************************
  2. *  Copyright (c) 1989-1992 Micro Digital Associates, Inc.
  3. *                  All Rights Reserved.
  4. *
  5. *  MODULE: PROCESS.HPP  Process class.
  6. *
  7. *  DESRIPTION:
  8. *              This is the abstract process class. The user should derive
  9. *              his custom class from this one. The new class will contain
  10. *              a mixture of smx++ objects.
  11.  
  12. *  AUTHOR: Rick Evans 
  13. *
  14. *
  15. *  UPDATE LOG
  16. *
  17. *************************************************************************/
  18. #ifndef  __PROCESS_HPP
  19. #define __PROCESS_HPP  1
  20.  
  21. //Class
  22. class Process
  23. {
  24. private:
  25.  
  26.    //-------- Constructors --------
  27.    // abstract class no constructors.
  28.  
  29. public:
  30.  
  31.    //---------- Methods -----------
  32.    virtual BOOLEAN Start()=0;
  33.    virtual BOOLEAN ShutDown()=0;
  34.  
  35.    //--------- Destructor ---------
  36.    // abstract class no destructors.
  37. };
  38. #endif
  39. //EOF
  40.