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 / WINDOW.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  981b  |  53 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1 window
  3.  
  4. class %1 : public CWnd
  5. {
  6. $$IF(OLECREATE)
  7.     DECLARE_DYNCREATE(%1)
  8.  
  9. $$ENDIF
  10. // Construction
  11. public:
  12.     %1();
  13.  
  14. // Attributes
  15. public:
  16.  
  17. // Operations
  18. public:
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(%1)
  23. $$IF(OLEAUTO)
  24.     public:
  25.     virtual void OnFinalRelease();
  26. $$ENDIF
  27.     //}}AFX_VIRTUAL
  28.  
  29. // Implementation
  30. public:
  31.     virtual ~%1();
  32.  
  33.     // Generated message map functions
  34. protected:
  35.     //{{AFX_MSG(%1)
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. $$IF(OLECREATE)
  40.     DECLARE_OLECREATE(%1)
  41. $$ENDIF
  42. $$IF(OLEAUTO)
  43.     // Generated OLE dispatch map functions
  44.     //{{AFX_DISPATCH(%1)
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.     //}}AFX_DISPATCH
  47.     DECLARE_DISPATCH_MAP()
  48.     DECLARE_INTERFACE_MAP()
  49. $$ENDIF()
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////