home *** CD-ROM | disk | FTP | other *** search
- // chkbovw.h : interface of the CChkboxView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- #include "MyDlg.h"
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- class CChkboxView : public CView
- {
- protected: // create from serialization only
- CChkboxView();
- DECLARE_DYNCREATE(CChkboxView)
-
- // Attributes
- public:
- CChkboxDoc* GetDocument();
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- CMyDlg dlg;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CChkboxView();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CChkboxView)
- afx_msg void OnFileTryit();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in chkbovw.cpp
- inline CChkboxDoc* CChkboxView::GetDocument()
- { return (CChkboxDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-