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

  1. // Pitch.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CPitch dialog
  6.  
  7. class CPitch : public CPropertyPage
  8. {
  9.    DECLARE_DYNCREATE(CPitch)
  10.  
  11. // Construction
  12. public:
  13.    CPitch();
  14.    ~CPitch();
  15.  
  16. // Dialog Data
  17.    //{{AFX_DATA(CPitch)
  18.    enum { IDD = IDD_DIALOG3 };
  19.    CEdit m_SpacingEdit;
  20.    int      m_Pitch;
  21.    int      m_Spacing;
  22.    //}}AFX_DATA
  23.  
  24.  
  25. // Overrides
  26.    // ClassWizard generate virtual function overrides
  27.    //{{AFX_VIRTUAL(CPitch)
  28.    protected:
  29.    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.    //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.    // Generated message map functions
  35.    //{{AFX_MSG(CPitch)
  36.    virtual BOOL OnInitDialog();
  37.    //}}AFX_MSG
  38.    DECLARE_MESSAGE_MAP()
  39.  
  40. };
  41.