home *** CD-ROM | disk | FTP | other *** search
- // mainfrm.h : interface of the CMainFrame class
- //
-
- // This is a part of the Objective Grid C++ Library.
- // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
- // All rights reserved.
- //
- // This source code is only intended as a supplement to
- // the Objective Grid Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding
- // the Objective Grid product.
- //
-
-
- #ifndef _MAINFRM_H_
- #define _MAINFRM_H_
-
- #ifndef _GRIDFRM_H_
- #include "gridfrm.h"
- #endif
-
- class CMainFrame : public CGridMDIFrameWnd
- {
- DECLARE_DYNAMIC(CMainFrame)
- public:
- CMainFrame();
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMainFrame();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
-
- // protected: // control bar embedded members
- public:
- CStatusBar m_wndStatusBar;
- CToolBar m_wndToolBar;
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMainFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
-
- #endif // _MAINFRM_H_
-
- /////////////////////////////////////////////////////////////////////////////
-
-