home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch12 / test / testview.h < prev   
Encoding:
C/C++ Source or Header  |  1994-01-20  |  984 b   |  46 lines

  1. // testview.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CTestView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CTestView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CTestView)
  14. protected:
  15.     CTestView();            // protected constructor used by dynamic creation
  16.  
  17. // Form Data
  18. public:
  19.     //{{AFX_DATA(CTestView)
  20.     enum { IDD = IDD_DIALOG1 };
  21.     CString    m_MyEditBox;
  22.     //}}AFX_DATA
  23.  
  24. // Attributes
  25. public:
  26.  
  27. // Operations
  28. public:
  29.  
  30. // Implementation
  31. protected:
  32.     virtual ~CTestView();
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CTestView)
  36.     afx_msg void OnTestButton();
  37.     afx_msg void OnClearButton();
  38.     afx_msg void OnFileTest();
  39.     afx_msg void OnFileClear();
  40.     afx_msg void OnFileCurrentvalue();
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.