home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / stingray / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-27  |  1.2 KB  |  62 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3.  
  4. // This is a part of the Objective Grid C++ Library.
  5. // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to
  9. // the Objective Grid Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding
  12. // the Objective Grid product.
  13. //
  14.  
  15.  
  16. #ifndef _MAINFRM_H_
  17. #define _MAINFRM_H_
  18.  
  19. #ifndef _GRIDFRM_H_
  20. #include "gridfrm.h"
  21. #endif
  22.  
  23. class CMainFrame : public CGridMDIFrameWnd
  24. {
  25.     DECLARE_DYNAMIC(CMainFrame)
  26. public:
  27.     CMainFrame();
  28.  
  29. // Attributes
  30. public:
  31.  
  32. // Operations
  33. public:
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39.     virtual void AssertValid() const;
  40.     virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42.  
  43.  
  44. // protected:  // control bar embedded members
  45. public:
  46.     CStatusBar  m_wndStatusBar;
  47.     CToolBar    m_wndToolBar;
  48.  
  49. // Generated message map functions
  50. protected:
  51.     //{{AFX_MSG(CMainFrame)
  52.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57.  
  58. #endif // _MAINFRM_H_
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.  
  62.