Class Hierarchy
AcRxObject AcDbDwgFiler AcDbDeepCloneFiler
C++
class AcDbDwgFiler : public AcRxObject;
File
dbfiler.h
Description
This abstract class provides the interface for derived classes that are used for I/O operations that work with the DWG information format.
Specialty internal classes (that is, not exported to the API) derived from this class are used for DWG filing and Undo recording. In addition, the AcDbDeepCloneFiler and AcDbWblockCloneFiler classes in the API are derived from this class to handle deepClone and wblockClone filing operations.
Remarks
When working with data of the int type, do not use the AcDbDwgFiler::readItem and AcDbDwgFiler::writeItem methods. If you do, the call will resolve to the Adesk::Boolean version of the readItem or writeItem functions because they are the only two with an int argument. This will result in any data value other than 0 or 1 being converted to a 1. To avoid this, either use the Adesk::Int32 data type instead of int, or explicitly call the AcDbDwgFiler::readInt32 or AcDbDwgFiler::writeInt32 methods.
Links
See Also
AcDbObject, AcDbDatabase