MainFrm.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__F892AEA3_73B5_4945_8331_82FB6C30FC2D__INCLUDED_)
  5. #define AFX_MAINFRM_H__F892AEA3_73B5_4945_8331_82FB6C30FC2D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ResizableFrame.h"
  10. class CMainFrame : public CResizableFrame
  11. {
  12. protected: // create from serialization only
  13. CMainFrame();
  14. DECLARE_DYNCREATE(CMainFrame)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMainFrame)
  22. public:
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. protected: // control bar embedded members
  32. CStatusBar m_wndStatusBar;
  33. CToolBar m_wndToolBar;
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CMainFrame)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_MAINFRM_H__F892AEA3_73B5_4945_8331_82FB6C30FC2D__INCLUDED_)