控件所有数据库实体的类型信息
class McRxClass;
McRxClass.h
例如: 判断一个实体是否是一个直线
bool IsLine(McDbObjectId entId) { McDbObjectPointer<McDbEntity> spEnt(entId,McDb::kForRead); if(spEnt.openStatus() != Mcad::eOk) return false; McDbLine* pLine = McDbLine::cast(spEnt.object()); if(pLine != NULL) { return true; } else { return false; } }