1 /*---------------------------------------------------------------------------* 2 Project: HIO2 demos - multi 3 File: MainFrm.h 4 5 (C)2005 HUDSON SOFT 6 7 $Header: /home/cvsroot/SDK/build/demos/hio2demo/vc++/multi/MainFrm.h,v 1.3 2006/03/15 06:31:26 mitu Exp $ 8 9 $NoKeywords: $ 10 *---------------------------------------------------------------------------*/ 11 12 // MainFrm.h : interface of the CMainFrame class 13 // 14 15 16 #pragma once 17 class CMainFrame : public CMDIFrameWnd 18 { 19 DECLARE_DYNAMIC(CMainFrame) 20 public: 21 CMainFrame(); 22 23 // Attributes 24 public: 25 26 // Operations 27 public: 28 29 // Overrides 30 public: 31 virtual BOOL PreCreateWindow(CREATESTRUCT& cs); 32 33 // Implementation 34 public: 35 virtual ~CMainFrame(); 36 #ifdef _DEBUG 37 virtual void AssertValid() const; 38 virtual void Dump(CDumpContext& dc) const; 39 #endif 40 41 protected: // control bar embedded members 42 CStatusBar m_wndStatusBar; 43 44 // Generated message map functions 45 protected: 46 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); 47 DECLARE_MESSAGE_MAP() 48 }; 49 50 51