1 /*---------------------------------------------------------------------------* 2 Project: HIO2 demos - dual 3 File: MainFrame.h 4 5 (C)2005 HUDSON SOFT 6 7 $Header: /home/cvsroot/SDK/build/demos/hio2demo/vc++/dual/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 CFrameWnd 18 { 19 20 protected: // create from serialization only 21 CMainFrame(); 22 DECLARE_DYNCREATE(CMainFrame) 23 24 // Attributes 25 public: 26 27 // Operations 28 public: 29 30 // Overrides 31 public: 32 virtual BOOL PreCreateWindow(CREATESTRUCT& cs); 33 34 // Implementation 35 public: 36 virtual ~CMainFrame(); 37 #ifdef _DEBUG 38 virtual void AssertValid() const; 39 virtual void Dump(CDumpContext& dc) const; 40 #endif 41 42 protected: // control bar embedded members 43 CStatusBar m_wndStatusBar; 44 45 // Generated message map functions 46 protected: 47 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); 48 DECLARE_MESSAGE_MAP() 49 }; 50 51 52