DocData.cpp
上传用户:mica555
上传日期:2014-05-08
资源大小:68k
文件大小: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.     str=_T("");
  16. // TODO: add your own initialization.
  17. }
  18. CDocData::CDocData(const CDocData &data)
  19. {
  20. // TODO: add your own initialization.
  21. str=data.str;
  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. }