⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 docdata.h

📁 AUTOCAD 程序员使用的
💻 H
字号:
// 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__04DA2231_EBEF_11D2_8D53_0060B0CDE437__INCLUDED_)
#define AFX_DOCDATA_H__04DA2231_EBEF_11D2_8D53_0060B0CDE437__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)
	AsdkDbReact* m_pAsdkDbReact;
	//}}AFX_ARX_DATA

	// TODO: here you can add your variables
	//       which depends on a document / database.
	AcDbObjectIdArray mErasedList ;

};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -