home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / msdev / bin / mfcclswz.dll / SRCDATA / MDISPLIT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-12  |  1.2 KB  |  56 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1 frame with splitter
  3.  
  4. #ifndef __AFXEXT_H__
  5. #include <afxext.h>
  6. #endif
  7.  
  8. class %1 : public CMDIChildWnd
  9. {
  10.     DECLARE_DYNCREATE(%1)
  11. protected:
  12.     %1();           // protected constructor used by dynamic creation
  13.  
  14. // Attributes
  15. protected:
  16.     CSplitterWnd    m_wndSplitter;
  17. public:
  18.  
  19. // Operations
  20. public:
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(%1)
  25. $$IF(OLEAUTO)
  26.     public:
  27.     virtual void OnFinalRelease();
  28. $$ENDIF
  29.     protected:
  30.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~%1();
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG(%1)
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. $$IF(OLECREATE)
  43.     DECLARE_OLECREATE(%1)
  44. $$ENDIF
  45. $$IF(OLEAUTO)
  46.     // Generated OLE dispatch map functions
  47.     //{{AFX_DISPATCH(%1)
  48.         // NOTE - the ClassWizard will add and remove member functions here.
  49.     //}}AFX_DISPATCH
  50.     DECLARE_DISPATCH_MAP()
  51.     DECLARE_INTERFACE_MAP()
  52. $$ENDIF()
  53. };
  54.  
  55. /////////////////////////////////////////////////////////////////////////////