dime
0.9.1
Portable DXF file library
|
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 |
char * | getString () |
virtual void | getValue (dimeParam ¶m) const |
bool | isEndOfFileRecord () const |
bool | isEndOfSectionRecord () const |
bool | read (dimeInput *const in) |
bool | setString (const char *const s, dimeMemHandler *const memhandler=NULL) |
void | setStringPointer (char *const s) |
virtual void | setValue (const dimeParam ¶m, dimeMemHandler *const memhandler=NULL) |
int | typeId () const |
bool | write (dimeOutput *const out) |
Public Member Functions inherited from dimeRecord | |
dimeRecord (const int group_code) | |
virtual | ~dimeRecord () |
int | getGroupCode () const |
virtual void | print () const |
void | setGroupCode (const int group_code) |
Public Member Functions inherited from dimeBase | |
dimeBase (void) | |
virtual | ~dimeBase () |
virtual bool | isOfType (const int thetypeid) const |
void | operator delete (void *ptr) |
void * | operator new (size_t size, dimeMemHandler *memhandler=NULL, const int alignment=4) |
Protected Attributes | |
char * | string |
Protected Attributes inherited from dimeRecord | |
int | groupCode |
Additional Inherited Members | |
Public Types inherited from dimeBase | |
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 Public Member Functions inherited from dimeRecord | |
static dimeRecord * | createRecord (const int group_code, const dimeParam ¶m, dimeMemHandler *const memhandler) |
static dimeRecord * | createRecord (const int group_code, dimeMemHandler *const memhandler) |
static int | getRecordType (const int group_code) |
static dimeRecord * | readRecord (dimeInput *const in) |
static bool | readRecordData (dimeInput *const in, const int group_code, dimeParam ¶m) |
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.
char * dimeStringRecord::getString | ( | ) |
Returns a pointer to the string.
|
virtual |
Returns the value of this record.
Implements dimeRecord.
|
virtual |
Returns true if this record is an end of file record.
Reimplemented from dimeRecord.
|
virtual |
Returns true if this record is an end of section record.
Reimplemented from dimeRecord.
|
virtual |
This function will read the record from the dimeInput file.
Implements dimeRecord.
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.
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.
|
virtual |
Sets the value of this record. The memory handler is needed by dimeStringRecord.
Implements dimeRecord.
|
virtual |
This virtual function will return the type of the record.
Implements dimeRecord.
|
virtual |
This function will write the record to the dimeOutput file.
Reimplemented from dimeRecord.