home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch32 / my3d / my3dview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  1.1 KB  |  52 lines

  1. // my3dview.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMy3dView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CMy3dView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CMy3dView)
  14. protected:
  15.     CMy3dView();            // protected constructor used by dynamic creation
  16.  
  17. // Form Data
  18. public:
  19.     //{{AFX_DATA(CMy3dView)
  20.     enum { IDD = IDD_DIALOG1 };
  21.         // NOTE: the ClassWizard will add data members here
  22.     //}}AFX_DATA
  23.  
  24. // Attributes
  25. public:
  26.  
  27.      //////////////////////
  28.      // MY CODE STARTS HERE
  29.      //////////////////////
  30.  
  31.      int m_ReaganSession;
  32.  
  33.      ////////////////////
  34.      // MY CODE ENDS HERE
  35.      ////////////////////
  36.  
  37. // Operations
  38. public:
  39.  
  40. // Implementation
  41. protected:
  42.     virtual ~CMy3dView();
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CMy3dView)
  46.     afx_msg void OnClickCommand3d1(UINT, int, CWnd*, LPVOID);
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.