home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-01 | 683 b | 32 lines | [TEXT/CWIE] |
- // mainfrm.h -- Interface for the application frame window in SDI app
- // Created 01/01/95 12:01 PM by AppMaker
-
- class CMainFrame : public CFrameWnd
- {
- public:
- virtual ~CMainFrame();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- // Implementation
- protected:
- CMainFrame();
- DECLARE_DYNCREATE(CMainFrame)
-
- // Member variables
- CStatusBar m_StatusBar;
- CToolBar m_ToolBar;
-
- // Message maps
- protected:
- DECLARE_MESSAGE_MAP()
-
- //{{AFX_MSG(CMainFrame)
- // Handlers within the section marked by {{AFX_MSG and }}AFX_MSG
- // are maintained by ClassExpress.
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- //}}AFX_MSG
- };
-