DocData.h
上传用户:detv0711
上传日期:2014-09-18
资源大小:360k
文件大小: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__9B1DFE6A_CD67_11D9_86C5_000021CECA2D__INCLUDED_)
  6. #define AFX_DOCDATA_H__9B1DFE6A_CD67_11D9_86C5_000021CECA2D__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. };
  26. #endif