home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / drawcli / summpage.h < prev   
C/C++ Source or Header  |  1998-03-26  |  923b  |  45 lines

  1. // summpage.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSummPage dialog
  6.  
  7. class CSummPage : public CPropertyPage
  8. {
  9.         DECLARE_DYNCREATE(CSummPage)
  10.  
  11. // Construction
  12. public:
  13.         CSummPage();
  14.         ~CSummPage();
  15.  
  16. // Dialog Data
  17.         //{{AFX_DATA(CSummPage)
  18.     enum { IDD = IDD_SUMM_PAGE };
  19.     CString m_strAuthor;
  20.     CString m_strKeywd;
  21.     CString m_strSubj;
  22.     CString m_strCmt;
  23.     CString m_strTempl;
  24.     CString m_strTitle;
  25.     CString m_strAppname;
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generate virtual function overrides
  31.         //{{AFX_VIRTUAL(CSummPage)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.     // Generated message map functions
  39.         //{{AFX_MSG(CSummPage)
  40.         // NOTE: the ClassWizard will add member functions here
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43.  
  44. };
  45.