home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / vcslid / msfc / range.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-09  |  595 b   |  30 lines

  1. // range.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CRange dialog
  6.  
  7. class CRange : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CRange(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CRange)
  15.     enum { IDD = IDD_RANGE };
  16.     CString    m_Low;
  17.     CString    m_High;
  18.     //}}AFX_DATA
  19.  
  20. // Implementation
  21. protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  23.  
  24.     // Generated message map functions
  25.     //{{AFX_MSG(CRange)
  26.     virtual void OnOK();
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.