home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / drawcli / drawcli.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.3 KB  |  44 lines

  1. // drawcli.h : main header file for the DRAWCLI application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 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. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"       // main symbols
  18. #include <afxtempl.h>       // drawcli uses collection class templates
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CDrawApp:
  22. // See drawcli.cpp for the implementation of this class
  23. //
  24.  
  25. class CDrawApp : public CWinApp
  26. {
  27. public:
  28.     CDrawApp();
  29.  
  30. // Overrides
  31.     virtual BOOL InitInstance();
  32.  
  33. // Implementation
  34. protected:
  35.     //{{AFX_MSG(CDrawApp)
  36.     afx_msg void OnAppAbout();
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.         //    DO NOT EDIT what you see in these blocks of generated code !
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.