MainFrm.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #ifndef MAINFRM_H
  5. #define MAINFRM_H
  6. class CMainFrame : public CMDIFrameWnd
  7. {
  8. DECLARE_DYNAMIC(CMainFrame)
  9. public:
  10. CMainFrame();
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CMainFrame)
  18. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  19. //}}AFX_VIRTUAL
  20. // Implementation
  21. public:
  22. virtual ~CMainFrame();
  23. #ifdef _DEBUG
  24. virtual void AssertValid() const;
  25. virtual void Dump(CDumpContext& dc) const;
  26. #endif
  27. protected: // control bar embedded members
  28. CStatusBar m_wndStatusBar;
  29. CToolBar m_wndToolBar;
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CMainFrame)
  33. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. /////////////////////////////////////////////////////////////////////////////
  38. //{{AFX_INSERT_LOCATION}}
  39. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  40. #endif //MAINFRM_H