home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch19 / pad / mysplit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-25  |  833 b   |  38 lines

  1. // mysplit.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMySplit frame with splitter
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CMySplit : public CMDIChildWnd
  12. {
  13.     DECLARE_DYNCREATE(CMySplit)
  14. protected:
  15.     CMySplit();            // protected constructor used by dynamic creation
  16.  
  17. // Attributes
  18. protected:
  19.     CSplitterWnd    m_wndSplitter;
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~CMySplit();
  28.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  29.  
  30.     // Generated message map functions
  31.     //{{AFX_MSG(CMySplit)
  32.         // NOTE - the ClassWizard will add and remove member functions here.
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38.