home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch09 / mainfrm.h < prev    next >
C/C++ Source or Header  |  1994-08-13  |  1KB  |  45 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CMDIFrameWnd
  6. {
  7.     DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9.     CMainFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     //}}AFX_VIRTUAL
  21.  
  22. // Implementation
  23. public:
  24.     virtual ~CMainFrame();
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29.  
  30. protected:  // control bar embedded members
  31.     CStatusBar  m_wndStatusBar;
  32.     CToolBar    m_wndToolBar;
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMainFrame)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code!
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.