home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / wordpad / unitspag.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  48 lines

  1. // unitspag.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 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. // CUnitsPage dialog
  15.  
  16. class CUnitsPage : public CCSPropertyPage
  17. {
  18. // Construction
  19. public:
  20.     CUnitsPage();   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CUnitsPage)
  24.     enum { IDD = IDD_OPTIONS_UNITS };
  25.     int     m_nUnits;
  26.     BOOL    m_bWordSel;
  27.     //}}AFX_DATA
  28.  
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CUnitsPage)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     static const DWORD m_nHelpIDs[];
  40.     virtual const DWORD* GetHelpIDs() {return m_nHelpIDs;}
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CUnitsPage)
  44.         // NOTE: the ClassWizard will add member functions here
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.