home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / olecont.exe / CHILDFRM.H < prev    next >
C/C++ Source or Header  |  1995-04-01  |  1KB  |  44 lines

  1. // childfrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CChildFrame : public CMDIChildWnd
  6. {
  7.     DECLARE_DYNCREATE(CChildFrame)
  8. public:
  9.     CChildFrame();
  10.  
  11. // Attributes
  12. protected:
  13.     CSplitterWnd m_wndSplitter;
  14. public:
  15.  
  16. // Operations
  17. public:
  18.  
  19. // Overrides
  20.     // ClassWizard generated virtual function overrides
  21.     //{{AFX_VIRTUAL(CChildFrame)
  22.     public:
  23.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  24.     //}}AFX_VIRTUAL
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CChildFrame();
  29. #ifdef _DEBUG
  30.     virtual void AssertValid() const;
  31.     virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CChildFrame)
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.         //    DO NOT EDIT what you see in these blocks of generated code!
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.