home *** CD-ROM | disk | FTP | other *** search
- // mytimvw.h : interface of the CMytimerView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CMytimerView : public CView
- {
- protected: // create from serialization only
- CMytimerView();
- DECLARE_DYNCREATE(CMytimerView)
-
- // Attributes
- public:
- CMytimerDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMytimerView();
- 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(CMytimerView)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnTimer(UINT nIDEvent);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in mytimvw.cpp
- inline CMytimerDoc* CMytimerView::GetDocument()
- { return (CMytimerDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-