home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / msdev / bin / mfcclswz.dll / SRCDATA / THREAD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-12  |  737 b   |  39 lines

  1.  
  2.  
  3. /////////////////////////////////////////////////////////////////////////////
  4. // %1 thread
  5.  
  6. class %1 : public CWinThread
  7. {
  8.     DECLARE_DYNCREATE(%1)
  9. protected:
  10.     %1();           // protected constructor used by dynamic creation
  11.  
  12. // Attributes
  13. public:
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Overrides
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(%1)
  21.     public:
  22.     virtual BOOL InitInstance();
  23.     virtual int ExitInstance();
  24.     //}}AFX_VIRTUAL
  25.  
  26. // Implementation
  27. protected:
  28.     virtual ~%1();
  29.  
  30.     // Generated message map functions
  31.     //{{AFX_MSG(%1)
  32.         // NOTE - the ClassWizard will add and remove member functions here.
  33.     //}}AFX_MSG
  34.  
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. /////////////////////////////////////////////////////////////////////////////