FIRE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // fire.h : main header file for the FIRE 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. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include <afxcmn.h>
  16. #include "resource.h"       // main symbols
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CFireApp:
  19. // See fire.cpp for the implementation of this class
  20. //
  21. class CFireApp : public CWinApp
  22. {
  23. public:
  24. CFireApp();
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CFireApp)
  28. public:
  29. virtual BOOL InitInstance();
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. //{{AFX_MSG(CFireApp)
  33. // NOTE - the ClassWizard will add and remove member functions here.
  34. //    DO NOT EDIT what you see in these blocks of generated code !
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////