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 / VIEW.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  1KB  |  55 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1 view
  3.  
  4. class %1 : public %2
  5. {
  6. protected:
  7.     %1();           // protected constructor used by dynamic creation
  8.     DECLARE_DYNCREATE(%1)
  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.     protected:
  24.     virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.     virtual ~%1();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35.     // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(%1)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. $$IF(OLECREATE)
  42.     DECLARE_OLECREATE(%1)
  43. $$ENDIF
  44. $$IF(OLEAUTO)
  45.     // Generated OLE dispatch map functions
  46.     //{{AFX_DISPATCH(%1)
  47.         // NOTE - the ClassWizard will add and remove member functions here.
  48.     //}}AFX_DISPATCH
  49.     DECLARE_DISPATCH_MAP()
  50.     DECLARE_INTERFACE_MAP()
  51. $$ENDIF()
  52. };
  53.  
  54. /////////////////////////////////////////////////////////////////////////////