home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / mfcatl / mfcatl.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  46 lines

  1. // MfcAtl.h : main header file for the MFCATL application
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "mfcatres.h"       // main symbols
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMfcAtlApp:
  21. // See MfcAtl.cpp for the implementation of this class
  22. //
  23.  
  24. class CMfcAtlApp : public CWinApp
  25. {
  26. public:
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CMfcAtlApp)
  30.     public:
  31.     virtual BOOL InitInstance();
  32.     virtual int ExitInstance();
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36.  
  37.     //{{AFX_MSG(CMfcAtlApp)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.