WinApp.h
上传用户:hehe2haha
上传日期:2013-08-16
资源大小:161k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // WinApp.h: interface for the CWinApp class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_WINAPP_H__4A9E8B95_F8CD_4E33_A216_0F27C02C56C6__INCLUDED_)
  5. #define AFX_WINAPP_H__4A9E8B95_F8CD_4E33_A216_0F27C02C56C6__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "MainFrame.h"
  10. #include "ManagerTool.h"
  11. #include "DataBase.h"
  12. class CWinApp  
  13. {
  14. public:
  15. CWinApp();
  16. virtual ~CWinApp();
  17. public:
  18. void SetAccel(HACCEL);
  19. int run();
  20. BOOL InitInstance();
  21. ATOM MyRegisterClass();
  22. void SetCmd(int nCmd);
  23. int GetCmd(void);
  24. void SetInst(HINSTANCE hInst);
  25. HINSTANCE GetInst(void);
  26. public:
  27. CDataBase    m_DataBase;
  28. CMainFrame   m_MainFrame;
  29. CManagerTool m_ManagerTool;
  30. private:
  31. HACCEL    hAccelTable;
  32. int       nCmdShow;
  33. HINSTANCE hInstance;
  34. };
  35. #endif // !defined(AFX_WINAPP_H__4A9E8B95_F8CD_4E33_A216_0F27C02C56C6__INCLUDED_)