#include <KML_Attribute.h>
Definition at line 13 of file KML_Attribute.h.
◆ KML_Attribute()
KML_Attribute::KML_Attribute |
( |
| ) |
|
◆ ~KML_Attribute()
KML_Attribute::~KML_Attribute |
( |
| ) |
|
◆ Echo()
void KML_Attribute::Echo |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [1/2]
void KML_Attribute::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [2/2]
void KML_Attribute::DeepEcho |
( |
const char * |
indent | ) |
|
|
virtual |
◆ Id()
int KML_Attribute::Id |
( |
void |
| ) |
|
|
inlinevirtual |
◆ ObjectEnum()
int KML_Attribute::ObjectEnum |
( |
void |
| ) |
|
|
inlinevirtual |
◆ copy()
Object* KML_Attribute::copy |
( |
void |
| ) |
|
|
inlinevirtual |
◆ Marshall()
void KML_Attribute::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inlinevirtual |
◆ Write()
void KML_Attribute::Write |
( |
FILE * |
fid, |
|
|
const char * |
indent |
|
) |
| |
◆ Read()
void KML_Attribute::Read |
( |
FILE * |
fid, |
|
|
char * |
kstr |
|
) |
| |
◆ Alloc()
void KML_Attribute::Alloc |
( |
const char * |
namei, |
|
|
const char * |
valuei |
|
) |
| |
Definition at line 87 of file KML_Attribute.cpp.
89 name =xNew<char>(strlen(namei )+1);
90 memcpy(
name,namei,(strlen(namei)+1)*
sizeof(
char));
92 value=xNew<char>(strlen(valuei)+1);
93 memcpy(
value,valuei,(strlen(valuei)+1)*
sizeof(
char));
◆ Add()
void KML_Attribute::Add |
( |
DataSet * |
attrib | ) |
|
◆ Get()
void KML_Attribute::Get |
( |
char ** |
pvalueo, |
|
|
char * |
deflt |
|
) |
| |
Definition at line 105 of file KML_Attribute.cpp.
108 *pvalueo=xNew<char>(strlen(deflt)+1);
109 memcpy(*pvalueo,deflt,(strlen(deflt)+1)*
sizeof(
char));
112 *pvalueo=xNew<char>(strlen(
value)+1);
113 memcpy(*pvalueo,
value,(strlen(
value)+1)*
sizeof(
char));
◆ name
char* KML_Attribute::name |
◆ value
char* KML_Attribute::value |
The documentation for this class was generated from the following files: