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

Windows编程

开发平台:

Visual C++

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