home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / MFC / SAMPLES / SCRIBBLE / STEP4 / SCRIBFRM.H_ / SCRIBFRM.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1.2 KB  |  45 lines

  1. // scribfrm.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #ifndef __AFXEXT_H__
  15. #include <afxext.h>
  16. #endif
  17.  
  18. class CScribFrame : public CMDIChildWnd
  19. {
  20.     DECLARE_DYNCREATE(CScribFrame)
  21. protected:
  22.     CScribFrame();          // protected constructor used by dynamic creation
  23.  
  24. // Attributes
  25. protected:
  26.     CSplitterWnd    m_wndSplitter;
  27. public:
  28.  
  29. // Operations
  30. public:
  31.  
  32. // Implementation
  33. public:
  34.     virtual ~CScribFrame();
  35.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG(CScribFrame)
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.