home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c06 / tabbed / phrastab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  789 b   |  39 lines

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