home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / MULTIP.PAK / MULTIPAD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.2 KB  |  47 lines

  1. // multipad.h : main header file for the Multipad application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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 related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #include <afxext.h>
  15. #include "resource.h"
  16.  
  17. class CMultiPadApp : public CWinApp
  18. {
  19.     BOOL InitInstance();
  20.     //{{AFX_MSG(CMultiPadApp)
  21.     afx_msg void OnAppAbout();
  22.     //}}AFX_MSG
  23.     DECLARE_MESSAGE_MAP()
  24. };
  25.  
  26. class CMainFrame : public CMDIFrameWnd
  27. {
  28.     DECLARE_DYNCREATE(CMainFrame)
  29.     CStatusBar  m_StatusBar;
  30.     CToolBar    m_ToolBar;
  31.     //{{AFX_MSG(CMainFrame)
  32.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. class CPadDoc : public CDocument
  38. {
  39.     DECLARE_DYNCREATE(CPadDoc)
  40.     void Serialize(CArchive& ar);
  41.     //{{AFX_MSG(CPadDoc)
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.