DocData.h
上传用户:mica555
上传日期:2014-05-08
资源大小:68k
文件大小: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__77CF758B_E4B8_4D72_BF9E_07403FAFE97A__INCLUDED_)
  6. #define AFX_DOCDATA_H__77CF758B_E4B8_4D72_BF9E_07403FAFE97A__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(const CDocData& data);
  20. //CDocData(const CDocData &data) ;
  21. ~CDocData();
  22. // NOTE: DO NOT edit the following lines.
  23. //{{AFX_ARX_DATA(CDocData)
  24. //}}AFX_ARX_DATA
  25.     CString str;
  26. // TODO: here you can add your variables
  27. //       which depends on a document / database.
  28. };
  29. #endif