#include <KML_LatLonBox.h>
|
| KML_LatLonBox () |
|
| ~KML_LatLonBox () |
|
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 () |
|
int | Id () |
|
int | ObjectEnum () |
|
Object * | copy () |
|
void | Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction) |
|
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_LatLonBox.h.
◆ KML_LatLonBox()
KML_LatLonBox::KML_LatLonBox |
( |
| ) |
|
◆ ~KML_LatLonBox()
KML_LatLonBox::~KML_LatLonBox |
( |
| ) |
|
◆ Echo()
void KML_LatLonBox::Echo |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [1/2]
void KML_LatLonBox::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho() [2/2]
void KML_LatLonBox::DeepEcho |
( |
const char * |
indent | ) |
|
|
virtual |
◆ Write()
void KML_LatLonBox::Write |
( |
FILE * |
fid, |
|
|
const char * |
indent |
|
) |
| |
|
virtual |
Implements KML_Object.
Definition at line 70 of file KML_LatLonBox.cpp.
72 fprintf(filout,
"%s<LatLonBox",indent);
74 fprintf(filout,
">\n");
79 fprintf(filout,
"%s <north>%0.16g</north>\n",indent,
north);
80 fprintf(filout,
"%s <south>%0.16g</south>\n",indent,
south);
81 fprintf(filout,
"%s <east>%0.16g</east>\n",indent,
east);
82 fprintf(filout,
"%s <west>%0.16g</west>\n",indent,
west);
83 fprintf(filout,
"%s <rotation>%0.16g</rotation>\n",indent,
rotation);
85 fprintf(filout,
"%s</LatLonBox>\n",indent);
◆ Read()
void KML_LatLonBox::Read |
( |
FILE * |
fid, |
|
|
char * |
kstr |
|
) |
| |
|
virtual |
Implements KML_Object.
Definition at line 90 of file KML_LatLonBox.cpp.
105 if (!strncmp(kstri,
"</LatLonBox",11)) {
106 xDelete<char>(kstri);
109 else if (!strncmp(kstri,
"</",2))
110 {
_error_(
"KML_LatLonBox::Read -- Unexpected closing tag " << kstri <<
".\n");}
111 else if (strncmp(kstri,
"<",1))
112 {
_error_(
"KML_LatLonBox::Read -- Unexpected field \"" << kstri <<
"\".\n");}
114 else if (!strcmp(kstri,
"<north>"))
118 else if (!strcmp(kstri,
"<south>"))
122 else if (!strcmp(kstri,
"<east>"))
126 else if (!strcmp(kstri,
"<west>"))
130 else if (!strcmp(kstri,
"<rotation>"))
135 else if (!strncmp(kstri,
"<",1))
138 xDelete<char>(kstri);
143 for (ncom=ncom; ncom>0; ncom--)
144 xDelete<char>(pcom[ncom-1]);
145 xDelete<char*>(pcom);
◆ Id()
int KML_LatLonBox::Id |
( |
void |
| ) |
|
|
inlinevirtual |
◆ ObjectEnum()
int KML_LatLonBox::ObjectEnum |
( |
void |
| ) |
|
|
inlinevirtual |
◆ copy()
Object* KML_LatLonBox::copy |
( |
void |
| ) |
|
|
inlinevirtual |
◆ Marshall()
void KML_LatLonBox::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
inlinevirtual |
◆ north
double KML_LatLonBox::north |
◆ south
double KML_LatLonBox::south |
◆ east
double KML_LatLonBox::east |
◆ west
double KML_LatLonBox::west |
◆ rotation
double KML_LatLonBox::rotation |
The documentation for this class was generated from the following files: