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

  1. // viewex.h : main header file for the VIEWEX application
  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.  
  15. #if !defined(__AFXWIN_H__) || !defined(__AFXEXT_H__)
  16.     #error include 'stdafx.h' before including this file for PCH
  17. #endif
  18.  
  19. #include "resource.h"       // main symbols
  20.  
  21. #include "maindoc.h"        // main document data
  22. #include "simpvw.h"         // simple read-only view
  23. #include "inputvw.h"        // editable view
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CViewExApp:
  27. // See viewex.cpp for the implementation of this class
  28. //
  29.  
  30. class CViewExApp : public CWinApp
  31. {
  32. public:
  33.     CViewExApp();
  34.  
  35. // Overrides
  36.     virtual BOOL InitInstance();
  37.  
  38. // Implementation
  39.  
  40.     //{{AFX_MSG(CViewExApp)
  41.     afx_msg void OnAppAbout();
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.