home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- // %1 view
-
- class %1 : public %2
- {
- protected:
- %1(); // protected constructor used by dynamic creation
- DECLARE_DYNCREATE(%1)
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(%1)
- $$IF(OLEAUTO)
- public:
- virtual void OnFinalRelease();
- $$ENDIF
- protected:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- virtual ~%1();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(%1)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- $$IF(OLECREATE)
- DECLARE_OLECREATE(%1)
- $$ENDIF
- $$IF(OLEAUTO)
- // Generated OLE dispatch map functions
- //{{AFX_DISPATCH(%1)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_DISPATCH
- DECLARE_DISPATCH_MAP()
- DECLARE_INTERFACE_MAP()
- $$ENDIF()
- };
-
- /////////////////////////////////////////////////////////////////////////////