home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c12 / lab01 / ex03 / palviewppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.2 KB  |  43 lines

  1. #if !defined(PALVIEWPPG_H__7F7767D3_365B_11D0_9C9D_00A0D100E3C8__INCLUDED_)
  2. #define PALVIEWPPG_H__7F7767D3_365B_11D0_9C9D_00A0D100E3C8__INCLUDED_
  3.  
  4. // PalViewPpg.h : Declaration of the CPalViewPropPage property page class.
  5.  
  6. ////////////////////////////////////////////////////////////////////////////
  7. // CPalViewPropPage : See PalViewPpg.cpp.cpp for implementation.
  8.  
  9. class CPalViewPropPage : public COlePropertyPage
  10. {
  11.     DECLARE_DYNCREATE(CPalViewPropPage)
  12.     DECLARE_OLECREATE_EX(CPalViewPropPage)
  13.  
  14. // Constructor
  15. public:
  16.     CPalViewPropPage();
  17.  
  18. // Dialog Data
  19.     //{{AFX_DATA(CPalViewPropPage)
  20.     enum { IDD = IDD_PROPPAGE_PALVIEW };
  21.     BOOL    m_bShowColorSelection;
  22.     BOOL    m_bShowID;
  23.     //}}AFX_DATA
  24.  
  25. // Implementation
  26. protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.  
  29. // Message maps
  30. protected:
  31.     //{{AFX_MSG(CPalViewPropPage)
  32.         // NOTE - ClassWizard will add and remove member functions here.
  33.         //    DO NOT EDIT what you see in these blocks of generated code !
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36.  
  37. };
  38.  
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  41.  
  42. #endif // !defined(PALVIEWPPG_H__7F7767D3_365B_11D0_9C9D_00A0D100E3C8__INCLUDED)
  43.