embeddedASMEntPE.h 726 B

12345678910111213141516171819202122232425262728
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2015 Autodesk, Inc. All rights reserved.
  4. //
  5. // Use of this software is subject to the terms of the Autodesk license
  6. // agreement provided at the time of installation or download, or which
  7. // otherwise accompanies this software in either electronic or hard copy form.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #pragma once
  11. #include "acdbport.h"
  12. #include "rxobject.h"
  13. class AcDbEmbeddedASMEntPropsPE : public AcRxObject
  14. {
  15. public:
  16. ACRX_DECLARE_MEMBERS(AcDbEmbeddedASMEntPropsPE);
  17. ACDB_PORT virtual void setIsEmbeddedEnt(AcDbObject* pObj, bool bIsEmbedded = true);
  18. };