home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 January / Pcwk0198.iso / Zadarmo / HEXVIEW / SRC / CHILDFRM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-01  |  1.6 KB  |  59 lines

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