home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / hierwiz / editdlg.h < prev    next >
C/C++ Source or Header  |  1998-03-05  |  1KB  |  48 lines

  1. // editdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CEditDlg dialog
  15.  
  16. class CEditDlg : public CAppWizStepDlg
  17. {
  18. // Construction
  19. public:
  20.     CEditDlg();   // standard constructor
  21.     virtual BOOL OnDismiss();
  22.  
  23. // Dialog Data
  24.  
  25.     CUsrEditClass m_EditData ;
  26.     //{{AFX_DATA(CEditDlg)
  27.     enum { IDD = IDD_USRTXT };
  28.     CString m_SampleTxt;
  29.     //}}AFX_DATA
  30.  
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CEditDlg)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. protected:
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CEditDlg)
  44.     virtual BOOL OnInitDialog();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.