DocData.h
资源名称:edptdb.rar [点击查看]
上传用户:detv0711
上传日期:2014-09-18
资源大小:360k
文件大小:1k
源码类别:
CAD
开发平台:
Visual C++
- // docdata.h : include file for document specific data
- // an instance of this class is automatically created
- // and managed by the AsdkDataManager class
- // see the AsdkDmgr.h DocData.cpp for more datail
- #if !defined(AFX_DOCDATA_H__9B1DFE6A_CD67_11D9_86C5_000021CECA2D__INCLUDED_)
- #define AFX_DOCDATA_H__9B1DFE6A_CD67_11D9_86C5_000021CECA2D__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- ////////////////////////////////////////////////////
- //
- // Here you can store the document / database
- // related data.
- //
- class CDocData
- {
- public:
- CDocData();
- ~CDocData();
- // NOTE: DO NOT edit the following lines.
- //{{AFX_ARX_DATA(CDocData)
- //}}AFX_ARX_DATA
- // TODO: here you can add your variables
- // which depends on a document / database.
- };
- #endif