Ice Sheet System Model  4.18
Code documentation
Public Member Functions
KML_Geometry Class Reference

#include <KML_Geometry.h>

Inheritance diagram for KML_Geometry:
KML_Object Object KML_LinearRing KML_LineString KML_MultiGeometry KML_Point KML_Polygon

Public Member Functions

 KML_Geometry ()
 
 ~KML_Geometry ()
 
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 ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
- Public Member Functions inherited from KML_Object
 KML_Object ()
 
 ~KML_Object ()
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
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)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Additional Inherited Members

- Data Fields inherited from KML_Object
DataSetattrib
 
DataSetcommnt
 
DataSetkmlobj
 

Detailed Description

Definition at line 14 of file KML_Geometry.h.

Constructor & Destructor Documentation

◆ KML_Geometry()

KML_Geometry::KML_Geometry ( )

Definition at line 19 of file KML_Geometry.cpp.

19  {/*{{{*/
20 
21  ;
22 
23 }

◆ ~KML_Geometry()

KML_Geometry::~KML_Geometry ( )

Definition at line 25 of file KML_Geometry.cpp.

25  {/*{{{*/
26 
27  ;
28 
29 }

Member Function Documentation

◆ Echo()

void KML_Geometry::Echo ( void  )
virtual

Reimplemented from KML_Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 33 of file KML_Geometry.cpp.

33  {/*{{{*/
34 
35  this->KML_Object::Echo();
36 
37  return;
38 }

◆ DeepEcho() [1/2]

void KML_Geometry::DeepEcho ( void  )
virtual

Reimplemented from KML_Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 40 of file KML_Geometry.cpp.

40  {/*{{{*/
41 
42  char indent[81]="";
43 
44  KML_Geometry::DeepEcho(indent);
45 
46  return;
47 }

◆ DeepEcho() [2/2]

void KML_Geometry::DeepEcho ( const char *  indent)
virtual

Reimplemented from KML_Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 49 of file KML_Geometry.cpp.

49  {/*{{{*/
50 
51  this->KML_Object::DeepEcho(indent);
52 
53  return;
54 }

◆ Write()

void KML_Geometry::Write ( FILE *  fid,
const char *  indent 
)
virtual

Implements KML_Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 56 of file KML_Geometry.cpp.

56  {/*{{{*/
57 
58  KML_Object::Write(filout,indent);
59 
60  return;
61 }

◆ Read()

void KML_Geometry::Read ( FILE *  fid,
char *  kstr 
)
virtual

Implements KML_Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 63 of file KML_Geometry.cpp.

63  {/*{{{*/
64 
65 /* process field within opening and closing tags */
66 
67  if (!strncmp(kstr,"</Geometry",10))
68  return;
69  else if (!strncmp(kstr,"</",2))
70  {_error_("KML_Geometry::Read -- Unexpected closing tag " << kstr << ".\n");}
71  else if (strncmp(kstr,"<",1))
72  {_error_("KML_Geometry::Read -- Unexpected field \"" << kstr << "\".\n");}
73 
74  else if (!strncmp(kstr,"<",1))
75  KML_Object::Read(fid,kstr);
76 
77  return;
78 }

◆ Id()

int KML_Geometry::Id ( void  )
inlinevirtual

Implements Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 28 of file KML_Geometry.h.

28 {_error_("Not implemented yet.");};

◆ ObjectEnum()

int KML_Geometry::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 29 of file KML_Geometry.h.

29 {_error_("Not implemented yet.");};

◆ copy()

Object* KML_Geometry::copy ( void  )
inlinevirtual

Implements Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 30 of file KML_Geometry.h.

30 {_error_("Not implemented yet.");};

◆ Marshall()

void KML_Geometry::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Reimplemented in KML_Polygon, KML_Point, KML_MultiGeometry, KML_LineString, and KML_LinearRing.

Definition at line 31 of file KML_Geometry.h.

31 { _error_("not implemented yet!");};

The documentation for this class was generated from the following files:
KML_Object::Read
virtual void Read(FILE *fid, char *kstr)=0
Definition: KML_Object.cpp:143
KML_Object::Write
virtual void Write(FILE *fid, const char *indent)=0
Definition: KML_Object.cpp:122
KML_Geometry::DeepEcho
void DeepEcho()
Definition: KML_Geometry.cpp:40
KML_Object::DeepEcho
virtual void DeepEcho()
Definition: KML_Object.cpp:72
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Object::Echo
virtual void Echo()
Definition: KML_Object.cpp:61