33 #ifndef DIME_SECTION_H 34 #define DIME_SECTION_H 36 #include <dime/Basic.h> 37 #include <dime/Base.h> 49 virtual const char *getSectionName()
const = 0;
52 virtual bool read(
dimeInput *
const file) = 0;
53 virtual bool write(
dimeOutput *
const file) = 0;
54 virtual int typeId()
const = 0;
55 virtual bool isOfType(
const int thetypeid)
const;
56 virtual int countRecords()
const = 0;
59 static dimeSection *createSection(
const char *
const sectionname,
67 #endif // ! DIME_SECTION_H The dimeBase class is the superclass for most classes in Dime.
Definition: Base.h:41
The dimeMemHandler class is a special-purpose memory manager.
Definition: MemHandler.h:38
virtual int typeId() const =0
The dimeModel class organizes a model.
Definition: Model.h:54
virtual bool isOfType(const int thetypeid) const
Definition: Base.cpp:116
The dimeSection class is the superclass for all section classes.
Definition: Section.h:43
The dimeOutput class handles writing of DXF and DXB files.
Definition: Output.h:41