home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Snippets / Threads Interface / CThreadManager.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-03  |  361 b   |  24 lines  |  [TEXT/KAHL]

  1. /***
  2.  * CThreadManager.h
  3.  *
  4.  *  Thread manager interface
  5.  *        Copyright © Gordon Watts 1994 (gwatts@fnal.fnal.gov)
  6.  *
  7.  ***/
  8. #pragma once
  9.  
  10. #include "CGWObject.h"
  11.  
  12. class CMainThread;
  13.  
  14. class CThreadManager : public CGWObject {
  15. protected:
  16.     CMainThread    *theMainThread;
  17.  
  18. public:
  19.  
  20.     /** COnstructors/ destructors **/
  21.     
  22.     CThreadManager (void);
  23.     ~CThreadManager (void);
  24. };