DocData.h
资源名称:suplib.rar [点击查看]
上传用户:mica555
上传日期:2014-05-08
资源大小:68k
文件大小: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__77CF758B_E4B8_4D72_BF9E_07403FAFE97A__INCLUDED_)
- #define AFX_DOCDATA_H__77CF758B_E4B8_4D72_BF9E_07403FAFE97A__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(const CDocData& data);
- //CDocData(const CDocData &data) ;
- ~CDocData();
- // NOTE: DO NOT edit the following lines.
- //{{AFX_ARX_DATA(CDocData)
- //}}AFX_ARX_DATA
- CString str;
- // TODO: here you can add your variables
- // which depends on a document / database.
- };
- #endif