ChildFrm.h
上传用户:ycdyang2
上传日期:2007-01-07
资源大小:126k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

Visual C++

  1. /* ---------------------------------------------------------------------------
  2.    This code can be used as you wish but without warranties as to performance 
  3.    of merchantability or any other warranties whether expressed or implied.
  4.    
  5.  Written by Mike Funduc, Funduc Software Inc. 8/1/96
  6.  To download the code and more useful utilities (including Search and
  7.  Replace for Windows 95/NT, 3.1x) go to: http://www.funduc.com
  8. ----------------------------------------------------------------------------*/
  9. // ChildFrm.h : interface of the CChildFrame class
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. class CChildFrame : public CMDIChildWnd
  13. {
  14. DECLARE_DYNCREATE(CChildFrame)
  15. public:
  16. CChildFrame();
  17. // Attributes
  18. protected:
  19. CSplitterWnd m_wndSplitter;
  20. public:
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CChildFrame)
  26. public:
  27. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  28. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CChildFrame();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CChildFrame)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code!
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////