#include <KML_Unknown.h>
|
| KML_Unknown () |
|
| ~KML_Unknown () |
|
void | Echo () |
|
void | DeepEcho () |
|
void | DeepEcho (const char *indent) |
|
void | Write (FILE *fid, const char *indent) |
|
void | Read (FILE *fid, char *kstr) |
|
int | Id () |
|
int | ObjectEnum () |
|
Object * | copy () |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
| KML_Object () |
|
| ~KML_Object () |
|
virtual void | WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp) |
|
virtual void | AddAttrib (const char *name, const char *value) |
|
virtual void | WriteAttrib (FILE *fid, const char *indent) |
|
virtual void | AddCommnt (int ncom, char **pcom) |
|
virtual void | AddCommnt (char *value) |
|
virtual void | WriteCommnt (FILE *fid, const char *indent) |
|
virtual | ~Object () |
|
Definition at line 14 of file KML_Unknown.h.
◆ KML_Unknown()
KML_Unknown::KML_Unknown |
( |
| ) |
|
◆ ~KML_Unknown()
KML_Unknown::~KML_Unknown |
( |
| ) |
|
◆ Echo()
void KML_Unknown::Echo |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [1/2]
void KML_Unknown::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [2/2]
void KML_Unknown::DeepEcho |
( |
const char * |
indent | ) |
|
|
virtual |
Reimplemented from KML_Object.
Definition at line 61 of file KML_Unknown.cpp.
65 char nl[]={
'\n',
'\0'};
68 if(flag)
_printf0_(indent <<
"KML_Unknown " <<
name <<
":\n");
72 valuei=xNew<char>(strlen(
value)+1);
73 memcpy(valuei,
value,(strlen(
value)+1)*
sizeof(
char));
75 vtoken=strtok(valuei,nl);
76 if(flag)
_printf0_(indent <<
" value: \"" << vtoken);
78 while((vtoken=strtok(NULL,nl)))
79 if(flag)
_printf0_(
"\n" << indent <<
" " << vtoken);
82 xDelete<char>(valuei);
85 if(flag)
_printf0_(indent <<
" value: [none]\n");
◆ Write()
void KML_Unknown::Write |
( |
FILE * |
fid, |
|
|
const char * |
indent |
|
) |
| |
|
virtual |
Implements KML_Object.
Definition at line 90 of file KML_Unknown.cpp.
94 char nl[]={
'\n',
'\0'};
96 fprintf(filout,
"%s<%s",indent,
name);
98 fprintf(filout,
">\n");
102 valuei=xNew<char>(strlen(
value)+1);
103 memcpy(valuei,
value,(strlen(
value)+1)*
sizeof(
char));
105 vtoken=strtok(valuei,nl);
106 fprintf(filout,
"%s %s\n",indent,vtoken);
108 while((vtoken=strtok(NULL,nl)))
109 fprintf(filout,
"%s %s\n",indent,vtoken);
111 xDelete<char>(valuei);
116 fprintf(filout,
"%s</%s>\n",indent,
name);
◆ Read()
void KML_Unknown::Read |
( |
FILE * |
fid, |
|
|
char * |
kstr |
|
) |
| |
|
virtual |
Implements KML_Object.
Definition at line 121 of file KML_Unknown.cpp.
127 char nl[]={
'\n',
'\0'};
145 if (!strncmp(&kstri[0],
"</", 2) &&
146 !strncmp(&kstri[2],
name,strlen(
name))) {
148 xDelete<char>(kstri);
151 else if (!strncmp(kstri,
"</",2))
152 {
_error_(
"KML_Unknown::Read -- Unexpected closing tag " << kstri <<
".\n");}
154 else if (strncmp(kstri,
"<",1)) {
156 value2=xNew<char>(strlen(
value)+1+strlen(kstri)+1);
157 memcpy(value2,
value,(strlen(
value)+1)*
sizeof(
char));
158 xDelete<char>(
value);
166 value=xNew<char>(strlen(kstri)+1);
167 memcpy(
value,kstri,(strlen(kstri)+1)*
sizeof(
char));
171 else if (!strncmp(kstri,
"<",1))
174 xDelete<char>(kstri);
179 for(ncom=ncom; ncom>0; ncom--)
180 xDelete<char>(pcom[ncom-1]);
181 xDelete<char*>(pcom);
◆ Id()
int KML_Unknown::Id |
( |
void |
| ) |
|
|
inlinevirtual |
◆ ObjectEnum()
int KML_Unknown::ObjectEnum |
( |
void |
| ) |
|
|
inlinevirtual |
◆ copy()
Object* KML_Unknown::copy |
( |
void |
| ) |
|
|
inlinevirtual |
◆ Marshall()
void KML_Unknown::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inlinevirtual |
◆ name
◆ value
The documentation for this class was generated from the following files: