home *** CD-ROM | disk | FTP | other *** search
/ Building OCXs / Building_OCXs_Que_1995.iso / code / ch04 / quoteppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-18  |  857 b   |  34 lines

  1. // quoteppg.h : Declaration of the CQuotePropPage property page class.
  2.  
  3. ////////////////////////////////////////////////////////////////////////////
  4. // CQuotePropPage : See quoteppg.cpp for implementation.
  5.  
  6. class CQuotePropPage : public COlePropertyPage
  7. {
  8.     DECLARE_DYNCREATE(CQuotePropPage)
  9.     DECLARE_OLECREATE_EX(CQuotePropPage)
  10.  
  11. // Constructor
  12. public:
  13.     CQuotePropPage();
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CQuotePropPage)
  17.     enum { IDD = IDD_PROPPAGE_QUOTE };
  18.     BOOL    m_bShowAuthor;
  19.     //}}AFX_DATA
  20.  
  21. // Implementation
  22. protected:
  23.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  24.  
  25. // Message maps
  26. protected:
  27.     //{{AFX_MSG(CQuotePropPage)
  28.         // NOTE - ClassWizard will add and remove member functions here.
  29.         //    DO NOT EDIT what you see in these blocks of generated code !
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32.  
  33. };
  34.