home *** CD-ROM | disk | FTP | other *** search
- // mycomvw.h : interface of the CMycomboView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- #include "MyDlg.h"
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
-
- class CMycomboView : public CView
- {
- protected: // create from serialization only
- CMycomboView();
- DECLARE_DYNCREATE(CMycomboView)
-
- // Attributes
- public:
- CMycomboDoc* GetDocument();
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- // Create a dlg object of class CMyDlg
- CMyDlg dlg;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMycomboView();
- 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(CMycomboView)
- afx_msg void OnFileTryit();
- afx_msg void OnFileCurrentitem();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in mycomvw.cpp
- inline CMycomboDoc* CMycomboView::GetDocument()
- { return (CMycomboDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-