#include <dime/tables/UCSTable.h>
Inheritance diagram for dimeUCSTable::
Public Methods | |
dimeUCSTable () | |
virtual dimeTableEntry * | copy (dimeModel *const model) const |
virtual const char * | getTableName () const |
const dimeVec3f & | getOrigin () const |
const dimeVec3f & | getXaxis () const |
const dimeVec3f & | getYaxis () const |
void | setOrigin (const dimeVec3f &v) |
void | setXaxis (const dimeVec3f &v) |
void | setYaxis (const dimeVec3f &v) |
virtual bool | write (dimeOutput *const out) |
virtual int | typeId () const |
virtual int | countRecords () const |
Protected Methods | |
virtual bool | handleRecord (const int groupcodes, const dimeParam ¶m, dimeMemHandler *const memhandler) |
|
Constructor. |
|
Returns the number of records for this table. Tables overloading this function should first count the number of records they will write, then add the return value of this function to get the total number of records. Reimplemented from dimeTableEntry. |
|
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 \true 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 dimeTableEntry. |
|
Must be implemented by all subclasses, and should return an unique id for that class. Reimplemented from dimeTableEntry. |
|
Will write the records to file. Reimplemented from dimeTableEntry. |