home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / TIME.PAK / TIMEPPG.H < prev   
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.1 KB  |  44 lines

  1. // timeppg.h : Declaration of the CTimePropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. ////////////////////////////////////////////////////////////////////////////
  15. // CTimePropPage : See timeppg.cpp for implementation.
  16.  
  17. class CTimePropPage : public COlePropertyPage
  18. {
  19.     DECLARE_DYNCREATE(CTimePropPage)
  20.     DECLARE_OLECREATE_EX(CTimePropPage)
  21.  
  22. // Constructor
  23. public:
  24.     CTimePropPage();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CTimePropPage)
  28.     enum { IDD = IDD_PROPPAGE_TIME };
  29.     BOOL    m_Enabled;
  30.     int     m_Interval;
  31.     //}}AFX_DATA
  32.  
  33. // Implementation
  34. protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.  
  37. // Message maps
  38. protected:
  39.     //{{AFX_MSG(CTimePropPage)
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42.  
  43. };
  44.