Ice Sheet System Model  4.18
Code documentation
KML_Document.h
Go to the documentation of this file.
1 
5 #ifndef _KML_DOCUMENT_H_
6 #define _KML_DOCUMENT_H_
7 
8 /*Headers:*/
9 /*{{{*/
10 #include "../shared/shared.h"
11 #include "./KML_Container.h"
12 class KML_Feature;
13 /*}}}*/
14 
15 class KML_Document: public KML_Container {
16 
17  public:
18 
19  /*KML_Document constructors, destructors {{{*/
20  KML_Document();
21  ~KML_Document();
22  /*}}}*/
23  /*Object virtual functions definitions:{{{ */
24  void Echo();
25  void DeepEcho();
26  void DeepEcho(const char* indent);
27  void Write(FILE* fid,const char* indent);
28  void Read(FILE* fid,char* kstr);
29  int Id(){_error_("Not implemented yet.");};
30  int ObjectEnum(){_error_("Not implemented yet.");};
31  Object* copy(){_error_("Not implemented yet.");};
32  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ _error_("not implemented yet!");};
33  /*}}}*/
34 
35 };
36 #endif /* _KML_DOCUMENT_H */
KML_Document
Definition: KML_Document.h:15
KML_Document::Write
void Write(FILE *fid, const char *indent)
Definition: KML_Document.cpp:62
KML_Document::DeepEcho
void DeepEcho()
Definition: KML_Document.cpp:43
KML_Document::Id
int Id()
Definition: KML_Document.h:29
KML_Document::ObjectEnum
int ObjectEnum()
Definition: KML_Document.h:30
KML_Feature
Definition: KML_Feature.h:21
Object
Definition: Object.h:13
KML_Document::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: KML_Document.h:32
KML_Document::KML_Document
KML_Document()
Definition: KML_Document.cpp:19
KML_Document::~KML_Document
~KML_Document()
Definition: KML_Document.cpp:25
KML_Document::Echo
void Echo()
Definition: KML_Document.cpp:33
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Document::copy
Object * copy()
Definition: KML_Document.h:31
KML_Container.h
: header file for kml_container abstract object
KML_Container
Definition: KML_Container.h:15
KML_Document::Read
void Read(FILE *fid, char *kstr)
Definition: KML_Document.cpp:76