DrawSysDoc.h
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:2k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // DrawSysDoc.h : interface of the CDrawSysDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DRAWSYSDOC_H__D5201CF0_8575_49C6_902B_E183A4A8269B__INCLUDED_)
  5. #define AFX_DRAWSYSDOC_H__D5201CF0_8575_49C6_902B_E183A4A8269B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CDrawShape;
  10. class CDrawSysDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CDrawSysDoc();
  14. DECLARE_DYNCREATE(CDrawSysDoc)
  15. // Attributes
  16. public:
  17. CObArray m_obArray;
  18. // Operations
  19. public:
  20. void AddShape(CDrawShape* pDrawShape);
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CDrawSysDoc)
  24. public:
  25. virtual BOOL OnNewDocument();
  26. virtual void Serialize(CArchive& ar);
  27. virtual void DeleteContents();
  28. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CDrawSysDoc();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CDrawSysDoc)
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //    DO NOT EDIT what you see in these blocks of generated code !
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_DRAWSYSDOC_H__D5201CF0_8575_49C6_902B_E183A4A8269B__INCLUDED_)