home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch16 / fileit / mydlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-23  |  595 b   |  29 lines

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