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

  1. // loadfile.h : header file.  This dialog allows you to enter the sample file path
  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. // CLoadFileDlg dialog
  15.  
  16. class CLoadFileDlg : public CAppWizStepDlg
  17. {
  18. // Construction
  19. public:
  20.     CLoadFileDlg();   // standard constructor
  21.     virtual BOOL OnDismiss();
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CLoadFileDlg)
  25.     enum { IDD = IDD_LOADFILE };
  26.     CString m_strProjName;
  27.     //}}AFX_DATA
  28.  
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CLoadFileDlg)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.  
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CLoadFileDlg)
  42.     afx_msg void OnBrowse();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.