home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch15 / arch / archview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-22  |  900 b   |  44 lines

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