home *** CD-ROM | disk | FTP | other *** search
- // myradvw.h : interface of the CMyradioView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- #include "MyDlg.h"
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- class CMyradioView : public CView
- {
- protected: // create from serialization only
- CMyradioView();
- DECLARE_DYNCREATE(CMyradioView)
-
- // Attributes
- public:
- CMyradioDoc* GetDocument();
-
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- // Create an object dlg (a dialog box) of class CMyDlg.
- CMyDlg dlg;
-
- // Declare the variables that hold the session numbers.
- int m_HelloSession;
- int m_KennedySession;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMyradioView();
- 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(CMyradioView)
- afx_msg void OnFileTryit();
- afx_msg void OnFileBeep();
- afx_msg void OnFilePlayme();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in myradvw.cpp
- inline CMyradioDoc* CMyradioView::GetDocument()
- { return (CMyradioDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-