Class Hierarchy
AcGeFiler
C++
class AcGeFiler;
File
gefiler.h
Description
AcGeFiler defines the abstract interface for serialization requirements of AcGe entities. An application that requires input/output of the definition of AcGe entities in a format defined by the application should provide an implementation of this class. An instance of this class is provided as an argument to the entity serialization functions, thus allowing the input/output format to be controlled by the client of gelib.
For example:
AcRfDwgFiler format; AcGeVersion dbVersion; AcGeLine3d newLine; if (acmeGetGelibImageVersion(entity, dbVersion) == AcMe::eOk) { AcGeDwgIO::read(format, dbVersion, newLine) AcGeDwgIO::write(format, newLine) }