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