#include <dime/classes/Class.h>
Inheritance diagram for dimeClass:
Public Member Functions | |
dimeClass () | |
virtual | ~dimeClass () |
virtual const char * | getDxfClassName () const =0 |
virtual dimeClass * | copy (dimeModel *const model) const =0 |
virtual bool | read (dimeInput *const in) |
virtual bool | write (dimeOutput *const out) |
virtual bool | isOfType (const int thetypeid) const |
virtual int | countRecords () const |
const char * | getClassName () const |
const char * | getApplicationName () const |
int32 | getVersionNumber () const |
int8 | getFlag280 () const |
int8 | getFlag281 () const |
void | setClassName (const char *const classname, dimeMemHandler *const memhandler=NULL) |
void | setApplicationName (const char *const appname, dimeMemHandler *const memhandler=NULL) |
void | setVersionNumber (const int32 v) |
void | setFlag280 (const int8 flag) |
void | setFlag281 (const int8 flag) |
Static Public Member Functions | |
static dimeClass * | createClass (const char *const name, dimeMemHandler *const memhandler=NULL) |
Protected Member Functions | |
virtual bool | handleRecord (const int groupcode, const dimeParam ¶m, dimeMemHandler *const memhandler) |
bool | copyRecords (dimeClass *const newclass, dimeModel *const model) const |
Friends | |
class | dimeClassesSection |
class | dimeModel |
|
Constructor. |
|
Destructor. |
|
Must be implemented by subclasses to return a copy of the class. Implemented in dimeUnknownClass. |
|
Copies the common and unclassified records. |
|
Returns the number of records in the record holder. Should be overloaded by subclasses which should count their records, and then call the parent's method. This method is used to precalculate the number of records to be written. Very useful when progress information is needed during write(). Reimplemented from dimeRecordHolder. Reimplemented in dimeUnknownClass. |
|
Static function which creates an class based on its name. |
|
Returns the class application name. |
|
Returns the C++ class name. |
|
Must be implemented by subclasses to return the dxf name of the class. Implemented in dimeUnknownClass. |
|
Returns the flag with group code 280. |
|
Returns the flag with group code 281. |
|
Returns the version number of this class. |
|
Must be overloaded by entities that directly supports a record type. During dimeRecordHolder::read(), dimeRecordHolder::setRecord and dimeRecordHolder::setRecords, this function is called for every record found, and it is up to the subclass if the record should be stored internally, or if a generic record should be created and stored in this superclass. A subclass should return when it will handle the record, false otherwise. Default function does nothing, and returns false. For entities, records with group codes 8 (layer name) and 62 (color number) are automatically handled by the dimeEntity class.
Reimplemented from dimeRecordHolder. |
|
Returns true if the object is of type typeid or is inherited from it. Function in base class checks whether thetypeid equals the virtual dimeBase::typeId() value or equals dimeBaseType. Must be implemented by all subclasses that are superclasses of other classes, and should check if thetypeid equals its typeId, and then call its parent's isOfType function. Leaf-classes do not have to implement this method. Reimplemented from dimeRecordHolder. |
|
Reads a class from in. Can be overloaded by subclasses, but in most cases this will not be necessary.
Reimplemented from dimeRecordHolder. |
|
Sets the application name for this class. |
|
Sets the C++ class name for this class. |
|
Sets the flag for the flag with group code 280. |
|
Sets the group code for the flag with group code 281. |
|
Sets the version number for this class. |
|
Writes common and unknown class records to file. Reimplemented from dimeRecordHolder. Reimplemented in dimeUnknownClass. |