home *** CD-ROM | disk | FTP | other *** search
- // my3dview.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMy3dView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMy3dView : public CFormView
- {
- DECLARE_DYNCREATE(CMy3dView)
- protected:
- CMy3dView(); // protected constructor used by dynamic creation
-
- // Form Data
- public:
- //{{AFX_DATA(CMy3dView)
- enum { IDD = IDD_DIALOG1 };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
- // Attributes
- public:
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- int m_ReaganSession;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CMy3dView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CMy3dView)
- afx_msg void OnClickCommand3d1(UINT, int, CWnd*, LPVOID);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-