source: trunk/MFCtooling/TestProg/MainFrm.h @ 32

Last change on this file since 32 was 32, checked in by sherbold, 13 years ago
File size: 700 bytes
Line 
1// MainFrm.h : interface of the CMainFrame class
2//
3
4
5#pragma once
6
7class CMainFrame : public CMDIFrameWnd
8{
9        DECLARE_DYNAMIC(CMainFrame)
10public:
11        CMainFrame();
12
13// Attributes
14public:
15
16// Operations
17public:
18
19// Overrides
20public:
21        virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
22
23// Implementation
24public:
25        virtual ~CMainFrame();
26#ifdef _DEBUG
27        virtual void AssertValid() const;
28        virtual void Dump(CDumpContext& dc) const;
29#endif
30
31protected:  // control bar embedded members
32        CStatusBar  m_wndStatusBar;
33        CToolBar    m_wndToolBar;
34
35// Generated message map functions
36protected:
37        afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
38        DECLARE_MESSAGE_MAP()
39};
40
41
Note: See TracBrowser for help on using the repository browser.