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