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 / FRAME.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  992b  |  48 lines

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