source: issm/trunk/src/c/classes/objects/KML/KML_PolyStyle.h@ 13395

Last change on this file since 13395 was 13395, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 13393

File size: 1.2 KB
Line 
1/*! \file KML_PolyStyle.h
2 * \brief: header file for kml_polystyle object
3 */
4
5#ifndef _KML_POLYSTYLE_H_
6#define _KML_POLYSTYLE_H_
7
8/*Headers:*/
9/*{{{*/
10#include "../../../include/include.h"
11#include "../../../shared/Exceptions/exceptions.h"
12#include "../../../EnumDefinitions/EnumDefinitions.h"
13
14#include "./KML_ColorStyle.h"
15/*}}}*/
16
17class KML_PolyStyle: public KML_ColorStyle {
18
19 public:
20
21 int fill;
22 int outline;
23
24 /*KML_PolyStyle constructors, destructors {{{*/
25 KML_PolyStyle();
26 ~KML_PolyStyle();
27 /*}}}*/
28 /*Object virtual functions definitions:{{{ */
29 void Echo();
30 void DeepEcho();
31 void DeepEcho(const char* indent);
32 void Write(FILE* fid,const char* indent);
33 void Read(FILE* fid,char* kstr);
34 int Id(){_error_("Not implemented yet.");};
35 int MyRank(){_error_("Not implemented yet.");};
36 void Marshall(char** pmarshalled_dataset){_error_("Not implemented yet.");};
37 int MarshallSize(){_error_("Not implemented yet.");};
38 void Demarshall(char** pmarshalled_dataset){_error_("Not implemented yet.");};
39 int ObjectEnum(){_error_("Not implemented yet.");};
40 Object* copy(){_error_("Not implemented yet.");};
41 /*}}}*/
42
43};
44#endif /* _KML_POLYSTYLE_H */
45
Note: See TracBrowser for help on using the repository browser.