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