MiniCAD.h
上传用户:netltd
上传日期:2013-02-12
资源大小:7234k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // MiniCAD.h : main header file for the MINICAD application
  2. //
  3. #if !defined(AFX_MINICAD_H__7F098796_D806_11D2_8830_E0646867975D__INCLUDED_)
  4. #define AFX_MINICAD_H__7F098796_D806_11D2_8830_E0646867975D__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h"       
  12. #include "RecentFileList.h"
  13. #include "MyCADInfo.h"
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMiniCADApp:
  16. // See MiniCAD.cpp for the implementation of this class
  17. //
  18. class CMiniCADApp : public CWinApp
  19. {
  20. public:
  21. CMiniCADApp();
  22. ~CMiniCADApp();
  23. public:
  24. CProjectInfo    ProjectInfo;
  25.     CCADInfo        CADInfo;
  26. CFileInfo       NewFileInfo; //用于传递新建文档信息
  27. CRecentFileListEx* pRecentProjectList;
  28. CRecentFileListEx* pRecentFileList;
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CMiniCADApp)
  32. public:
  33. virtual BOOL InitInstance();
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. //{{AFX_MSG(CMiniCADApp)
  37. afx_msg void OnAppAbout();
  38. afx_msg void OnFileOpen();
  39. afx_msg void OnFileNew();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_MINICAD_H__7F098796_D806_11D2_8830_E0646867975D__INCLUDED_)