home *** CD-ROM | disk | FTP | other *** search
- // testview.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CTestView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CTestView : public CFormView
- {
- DECLARE_DYNCREATE(CTestView)
- protected:
- CTestView(); // protected constructor used by dynamic creation
-
- // Form Data
- public:
- //{{AFX_DATA(CTestView)
- enum { IDD = IDD_DIALOG1 };
- CString m_MyEditBox;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CTestView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CTestView)
- afx_msg void OnTestButton();
- afx_msg void OnClearButton();
- afx_msg void OnFileTest();
- afx_msg void OnFileClear();
- afx_msg void OnFileCurrentvalue();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-