home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c10 / lab01 / baseline / querydlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  811 b   |  37 lines

  1. // QueryDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CQueryDlg dialog
  6.  
  7. class CQueryDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CQueryDlg(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CQueryDlg)
  15.     enum { IDD = IDD_DIALOG_QUERY };
  16.     CString    m_strParamName;
  17.     CString    m_strParamValue;
  18.     //}}AFX_DATA
  19.  
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CQueryDlg)
  24.     protected:
  25.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. protected:
  30.  
  31.     // Generated message map functions
  32.     //{{AFX_MSG(CQueryDlg)
  33.         // NOTE: the ClassWizard will add member functions here
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.