home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1997 March / Freesoft_1997-03_cd.bin / recenz / 926 / EXMFC.ARJ / EXAMPLES.MFC / EX04MFC.H < prev    next >
C/C++ Source or Header  |  1996-04-19  |  1KB  |  59 lines

  1. //
  2. // EX04MFC.H  - Component of MFC Example Program 04
  3. //
  4. //  C++/DOS Example program for ArchiveLib 2.0
  5. //
  6. //  Copyright (c) Greenleaf Software, Inc. 1996
  7. //  All Rights Reserved
  8. //
  9. // MEMBERS/FUNCTIONS DEMONSTRATED
  10. //
  11. //   None in this file.
  12. //
  13. // DESCRIPTION
  14. //
  15. //  This file is unchanged from the default version created by AppWizard.
  16. //
  17. // REVISION HISTORY
  18. //
  19. //  March 18, 1996    2.01A : First release
  20. //
  21.  
  22. // ex04mfc.h : main header file for the EX04MFC application
  23. //
  24.  
  25. #ifndef __AFXWIN_H__
  26.     #error include 'ex04std.h' before including this file for PCH
  27. #endif
  28.  
  29. #include "ex04res.h"        // main symbols
  30.  
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CEx04mfcApp:
  33. // See ex04mfc.cpp for the implementation of this class
  34. //
  35.  
  36. class CEx04mfcApp : public CWinApp
  37. {
  38. public:
  39.     CEx04mfcApp();
  40.  
  41. // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CEx04mfcApp)
  44.     public:
  45.     virtual BOOL InitInstance();
  46.     //}}AFX_VIRTUAL
  47.  
  48. // Implementation
  49.  
  50.     //{{AFX_MSG(CEx04mfcApp)
  51.         // NOTE - the ClassWizard will add and remove member functions here.
  52.         //    DO NOT EDIT what you see in these blocks of generated code !
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.