home *** CD-ROM | disk | FTP | other *** search
/ Mastering Microsoft Visual C++ 4 (2nd Edition) / VisualC4.ISO / tabdemo / justify.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-30  |  810 b   |  39 lines

  1. // Justify.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CJustify dialog
  6.  
  7. class CJustify : public CPropertyPage
  8. {
  9.    DECLARE_DYNCREATE(CJustify)
  10.  
  11. // Construction
  12. public:
  13.    CJustify();
  14.    ~CJustify();
  15.  
  16. // Dialog Data
  17.    //{{AFX_DATA(CJustify)
  18.    enum { IDD = IDD_DIALOG2 };
  19.    int      m_Justify;
  20.    //}}AFX_DATA
  21.  
  22.  
  23. // Overrides
  24.    // ClassWizard generate virtual function overrides
  25.    //{{AFX_VIRTUAL(CJustify)
  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(CJustify)
  34.       // NOTE: the ClassWizard will add member functions here
  35.    //}}AFX_MSG
  36.    DECLARE_MESSAGE_MAP()
  37.  
  38. };
  39.