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

  1. // Browser.h : main header file for the Browser application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CBrowserApp:
  12. // See Browser.cpp for the implementation of this class
  13. //
  14.  
  15. class CBrowserApp : public CWinApp
  16. {
  17. public:
  18.     ~CBrowserApp();
  19.     CMultiDocTemplate * m_pDataTemplate;  //Template for our data view
  20.     CMultiDocTemplate * m_pTemplate;     //Template created by App Wizard  
  21.     CBrowserApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CBrowserApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CBrowserApp)
  33.     afx_msg void OnAppAbout();
  34.     afx_msg void OnFileOpen();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.