DocData.h
上传用户:rundaa
上传日期:2009-05-24
资源大小:44k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // docdata.h : include file for document specific data
  2. //      an instance of this class is automatically created
  3. //      and managed by the AsdkDataManager class
  4. //      see the AsdkDmgr.h DocData.cpp for more datail
  5. #if !defined(AFX_DOCDATA_H__D541AE35_28C4_11D3_A7F6_000000000000__INCLUDED_)
  6. #define AFX_DOCDATA_H__D541AE35_28C4_11D3_A7F6_000000000000__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. ////////////////////////////////////////////////////
  11. //
  12. // Here you can store the document / database
  13. // related data.
  14. //
  15. class CDocData
  16. {
  17. public:
  18. CDocData();
  19. ~CDocData();
  20. // NOTE: DO NOT edit the following lines.
  21. //{{AFX_ARX_DATA(CDocData)
  22. //}}AFX_ARX_DATA
  23. // TODO: here you can add your variables
  24. //       which depends on a document / database.
  25. double m_dWindHt;
  26. double m_dWindWt;
  27. int m_nRows;
  28. int m_nCols;
  29. int m_nWindType; // 0 = Rect, 1 = Arch, 2 = Apex
  30. AcGePoint2d m_startPt;
  31. };
  32. #endif