home *** CD-ROM | disk | FTP | other *** search
/ Building OCXs / Building_OCXs_Que_1995.iso / code / ch10 / timerppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-14  |  872 b   |  35 lines

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