home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch35 / testvbx / testvvw.h < prev   
Encoding:
C/C++ Source or Header  |  1994-01-10  |  877 b   |  41 lines

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