home *** CD-ROM | disk | FTP | other *** search
- // mysplit.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMySplit frame with splitter
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMySplit : public CMDIChildWnd
- {
- DECLARE_DYNCREATE(CMySplit)
- protected:
- CMySplit(); // protected constructor used by dynamic creation
-
- // Attributes
- protected:
- CSplitterWnd m_wndSplitter;
- public:
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMySplit();
- virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
-
- // Generated message map functions
- //{{AFX_MSG(CMySplit)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-