home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / ole_vbx1 / mainfrm.h < prev    next >
C/C++ Source or Header  |  1994-01-24  |  1KB  |  41 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CMDIFrameWnd
  6. {
  7.     DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9.     CMainFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.     void        setStatusText(LPCSTR lpszText);
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CMainFrame();
  21. #ifdef _DEBUG
  22.     virtual void AssertValid() const;
  23.     virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25.  
  26. protected:  // control bar embedded members
  27.     CStatusBar  m_wndStatusBar;
  28.     CToolBar    m_wndToolBar;
  29.  
  30. // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CMainFrame)
  33.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code!
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. extern CMainFrame *pFrame;