DocData.h
资源名称:toolbar.rar [点击查看]
上传用户:rundaa
上传日期:2009-05-24
资源大小:44k
文件大小: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__D541AE35_28C4_11D3_A7F6_000000000000__INCLUDED_)
- #define AFX_DOCDATA_H__D541AE35_28C4_11D3_A7F6_000000000000__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.
- double m_dWindHt;
- double m_dWindWt;
- int m_nRows;
- int m_nCols;
- int m_nWindType; // 0 = Rect, 1 = Arch, 2 = Apex
- AcGePoint2d m_startPt;
- };
- #endif