home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / COMMON / MSDEV98 / BIN / MFCCLWZ.DLL / SRCDATA / THREAD.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  737b  |  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. /////////////////////////////////////////////////////////////////////////////