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

CAD

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include "StdArx.h"
  3. // The one and only document manager object
  4. // You can use the DocVars object to retrieve
  5. // document specific data throughout your application
  6. AsdkDataManager<CDocData> DocVars;
  7. //
  8. // Implementation of the document data class.
  9. //
  10. CDocData::CDocData()
  11. {
  12. // NOTE: DO NOT edit the following lines.
  13. //{{AFX_ARX_DATA_INIT(CDocData)
  14. //}}AFX_ARX_DATA_INIT
  15. // TODO: add your own initialization.
  16. m_dWindHt = 20.0;
  17. m_dWindWt = 20.0;
  18. m_nCols = 1;
  19. m_nRows = 1;
  20. m_nWindType = 0; // Default Rect
  21. m_startPt.set(0.0, 0.0);
  22. }
  23. CDocData::~CDocData()
  24. {
  25. // NOTE: DO NOT edit the following lines.
  26. //{{AFX_ARX_DATA_DEL(CDocData)
  27. //}}AFX_ARX_DATA_DEL
  28. // TODO: clean up.
  29. }