![]() |
Coin3D is Free Software, published under the BSD 3-clause license. |
https://bitbucket.org/Coin3D/ http://www.kongsberg.com/kogt/ |
The dimeStringRecord class is a container class for string records. More...
#include <dime/records/StringRecord.h>
Public Member Functions | |
dimeStringRecord (const int group_code=0) | |
virtual | ~dimeStringRecord () |
virtual dimeRecord * | copy (dimeMemHandler *const mh) const |
virtual void | setValue (const dimeParam ¶m, dimeMemHandler *const memhandler=NULL) |
virtual void | getValue (dimeParam ¶m) const |
void | setStringPointer (char *const s) |
bool | setString (const char *const s, dimeMemHandler *const memhandler=NULL) |
char * | getString () |
bool | isEndOfSectionRecord () const |
bool | isEndOfFileRecord () const |
int | typeId () const |
bool | read (dimeInput *const in) |
bool | write (dimeOutput *const out) |
![]() | |
dimeRecord (const int group_code) | |
virtual | ~dimeRecord () |
void | setGroupCode (const int group_code) |
int | getGroupCode () const |
virtual void | print () const |
![]() | |
dimeBase (void) | |
virtual | ~dimeBase () |
virtual bool | isOfType (const int thetypeid) const |
void * | operator new (size_t size, dimeMemHandler *memhandler=NULL, const int alignment=4) |
void | operator delete (void *ptr) |
Protected Attributes | |
char * | string |
![]() | |
int | groupCode |
Additional Inherited Members | |
![]() | |
enum | { dimeBaseType = 1, dimeRecordType, dimeStringRecordType, dimeFloatRecordType, dimeDoubleRecordType, dimeInt8RecordType, dimeInt16RecordType, dimeInt32RecordType, dimeHexRecordType, dimeRecordHolderType, dimeClassType, dimeUnknownClassType, dimeObjectType, dimeUnknownObjectType, dimeEntityType, dimeUnknownEntityType, dimePolylineType, dimeVertexType, dimeFaceEntityType, dimeExtrusionEntityType, dime3DFaceType, dimeSolidType, dimeTraceType, dimeLineType, dimeTextType, dimePointType, dimeBlockType, dimeInsertType, dimeCircleType, dimeArcType, dimeLWPolylineType, dimeEllipseType, dimeSplineType, dimeSectionType, dimeUnknownSectionType, dimeEntitiesSectionType, dimeBlocksSectionType, dimeTablesSectionType, dimeHeaderSectionType, dimeClassesSectionType, dimeObjectsSectionType, dimeTableType, dimeTableEntryType, dimeUnknownTableType, dimeUCSTableType, dimeLayerTableType, dimeLastTypeTag } |
![]() | |
static bool | readRecordData (dimeInput *const in, const int group_code, dimeParam ¶m) |
static dimeRecord * | readRecord (dimeInput *const in) |
static dimeRecord * | createRecord (const int group_code, dimeMemHandler *const memhandler) |
static dimeRecord * | createRecord (const int group_code, const dimeParam ¶m, dimeMemHandler *const memhandler) |
static int | getRecordType (const int group_code) |
The dimeStringRecord class is a container class for string records.
dimeStringRecord::dimeStringRecord | ( | const int | group_code = 0 | ) |
Constructor.
|
virtual |
Destructor.
|
virtual |
Returns a copy of this record.
Implements dimeRecord.
|
virtual |
Sets the value of this record. The memory handler is needed by dimeStringRecord.
Implements dimeRecord.
|
virtual |
Returns the value of this record.
Implements dimeRecord.
void dimeStringRecord::setStringPointer | ( | char *const | s | ) |
Sets the objects string pointer to point to 's'. Be aware that if the destructor is called for this object, the object will attempt to delete the string.
bool dimeStringRecord::setString | ( | const char *const | s, |
dimeMemHandler *const | memhandler = NULL |
||
) |
Will store a copy of string s. If memhandler != NULL, it will be used to allocate the needed memory. If memhandler == NULL, the memory will be allocated from the heap.
char * dimeStringRecord::getString | ( | ) |
Returns a pointer to the string.
|
virtual |
Returns true if this record is an end of section record.
Reimplemented from dimeRecord.
|
virtual |
Returns true if this records is an end of file record.
Reimplemented from dimeRecord.
|
virtual |
This virtual function will return the type of the record.
Implements dimeRecord.
|
virtual |
This function will read the record from the dimeInput file.
Implements dimeRecord.
|
virtual |
This function will write the record to the dimeOutput file.
Reimplemented from dimeRecord.