Ice Sheet System Model  4.18
Code documentation
KML_Overlay.h
Go to the documentation of this file.
1 
5 #ifndef _KML_OVERLAY_H_
6 #define _KML_OVERLAY_H_
7 
8 #define KML_OVERLAY_COLOR_LENGTH 8
9 
10 /*Headers:*/
11 /*{{{*/
12 #include "../shared/shared.h"
13 #include "./KML_Feature.h"
14 class KML_Icon;
15 /*}}}*/
16 
17 class KML_Overlay: public KML_Feature {
18 
19  public:
20 
22  int draword;
24 
25  /*KML_Overlay constructors, destructors {{{*/
26  KML_Overlay();
27  ~KML_Overlay();
28  /*}}}*/
29  /*Object virtual functions definitions:{{{*/
30  void Echo();
31  void DeepEcho();
32  void DeepEcho(const char* indent);
33  void Write(FILE* fid,const char* indent);
34  void Read(FILE* fid,char* kstr);
35  int Id(){_error_("Not implemented yet.");};
36  int ObjectEnum(){_error_("Not implemented yet.");};
37  Object* copy(){_error_("Not implemented yet.");};
38  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ _error_("not implemented yet!");};
39  /*}}}*/
40 
41 };
42 #endif /* _KML_OVERLAY_H */
KML_Overlay::color
char color[KML_OVERLAY_COLOR_LENGTH+1]
Definition: KML_Overlay.h:21
KML_OVERLAY_COLOR_LENGTH
#define KML_OVERLAY_COLOR_LENGTH
Definition: KML_Overlay.h:8
KML_Overlay::Id
int Id()
Definition: KML_Overlay.h:35
KML_Overlay::Write
void Write(FILE *fid, const char *indent)
Definition: KML_Overlay.cpp:74
KML_Overlay
Definition: KML_Overlay.h:17
KML_Feature
Definition: KML_Feature.h:21
KML_Overlay::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: KML_Overlay.h:38
Object
Definition: Object.h:13
KML_Overlay::KML_Overlay
KML_Overlay()
Definition: KML_Overlay.cpp:20
KML_Overlay::Read
void Read(FILE *fid, char *kstr)
Definition: KML_Overlay.cpp:93
KML_Overlay::DeepEcho
void DeepEcho()
Definition: KML_Overlay.cpp:49
KML_Overlay::Echo
void Echo()
Definition: KML_Overlay.cpp:41
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Icon
Definition: KML_Icon.h:20
KML_Overlay::~KML_Overlay
~KML_Overlay()
Definition: KML_Overlay.cpp:30
KML_Overlay::copy
Object * copy()
Definition: KML_Overlay.h:37
KML_Feature.h
: header file for kml_feature abstract object
KML_Overlay::ObjectEnum
int ObjectEnum()
Definition: KML_Overlay.h:36
KML_Overlay::draword
int draword
Definition: KML_Overlay.h:22
KML_Overlay::icon
KML_Icon * icon
Definition: KML_Overlay.h:23