Rev | Line | |
---|
[10256] | 1 | /*! \file KML_Point.h
|
---|
| 2 | * \brief: header file for kml_point object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | #ifndef _KML_POINT_H_
|
---|
| 6 | #define _KML_POINT_H_
|
---|
| 7 |
|
---|
| 8 | #define KML_POINT_ALTMODE_LENGTH 18
|
---|
| 9 |
|
---|
| 10 | /*Headers:*/
|
---|
[12365] | 11 | /*{{{*/
|
---|
[15068] | 12 | #include "../shared/shared.h"
|
---|
[10256] | 13 | #include "./KML_Geometry.h"
|
---|
| 14 | /*}}}*/
|
---|
| 15 |
|
---|
| 16 | class KML_Point: public KML_Geometry {
|
---|
| 17 |
|
---|
| 18 | public:
|
---|
| 19 |
|
---|
| 20 | bool extrude;
|
---|
| 21 | char altmode[KML_POINT_ALTMODE_LENGTH+1];
|
---|
| 22 | double coords[3];
|
---|
| 23 |
|
---|
[12365] | 24 | /*KML_Point constructors, destructors {{{*/
|
---|
[10256] | 25 | KML_Point();
|
---|
| 26 | ~KML_Point();
|
---|
| 27 | /*}}}*/
|
---|
[12365] | 28 | /*Object virtual functions definitions:{{{*/
|
---|
[10256] | 29 | void Echo();
|
---|
| 30 | void DeepEcho();
|
---|
[11201] | 31 | void DeepEcho(const char* indent);
|
---|
[11202] | 32 | void Write(FILE* fid,const char* indent);
|
---|
[10256] | 33 | void Read(FILE* fid,char* kstr);
|
---|
[11200] | 34 | void WriteExp(FILE* fid,const char* nstr,int sgn,double cm,double sp);
|
---|
[13056] | 35 | int Id(){_error_("Not implemented yet.");};
|
---|
| 36 | int ObjectEnum(){_error_("Not implemented yet.");};
|
---|
| 37 | Object* copy(){_error_("Not implemented yet.");};
|
---|
[25507] | 38 | void Marshall2(MarshallHandle* marshallhandle){ _error_("not implemented yet!");};
|
---|
[10256] | 39 | /*}}}*/
|
---|
| 40 |
|
---|
| 41 | };
|
---|
| 42 | #endif /* _KML_POINT_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.