XDADoc.h
上传用户:toomm12
上传日期:2022-04-29
资源大小:1871k
文件大小:1k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. // XDADoc.h : interface of the CXDADoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_XDADOC_H__AFBE1C1C_B362_41F7_875D_B8F3B9075FDB__INCLUDED_)
  5. #define AFX_XDADOC_H__AFBE1C1C_B362_41F7_875D_B8F3B9075FDB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CXDADoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12. CXDADoc();
  13. DECLARE_DYNCREATE(CXDADoc)
  14. // Attributes
  15. public:
  16. int x1;
  17. int x2;
  18. int y1;
  19. int y2;
  20. int c;
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CXDADoc)
  26. public:
  27. virtual BOOL OnNewDocument();
  28. virtual void Serialize(CArchive& ar);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CXDADoc();
  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(CXDADoc)
  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_XDADOC_H__AFBE1C1C_B362_41F7_875D_B8F3B9075FDB__INCLUDED_)