Last change
on this file since 12832 was 12832, checked in by Eric.Larour, 13 years ago |
Almost done migrating objects to classes
|
File size:
1.2 KB
|
Line | |
---|
1 | /*! \file KML_LatLonBox.h
|
---|
2 | * \brief: header file for kml_latlonbox object
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef _KML_LATLONBOX_H_
|
---|
6 | #define _KML_LATLONBOX_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_Object.h"
|
---|
15 | /*}}}*/
|
---|
16 |
|
---|
17 | class KML_LatLonBox: public KML_Object {
|
---|
18 |
|
---|
19 | public:
|
---|
20 |
|
---|
21 | double north;
|
---|
22 | double south;
|
---|
23 | double east;
|
---|
24 | double west;
|
---|
25 | double rotation;
|
---|
26 |
|
---|
27 | /*KML_LatLonBox constructors, destructors {{{*/
|
---|
28 | KML_LatLonBox();
|
---|
29 | ~KML_LatLonBox();
|
---|
30 | /*}}}*/
|
---|
31 | /*Object virtual functions definitions:{{{*/
|
---|
32 | void Echo();
|
---|
33 | void DeepEcho();
|
---|
34 | void DeepEcho(const char* indent);
|
---|
35 | void Write(FILE* fid,const char* indent);
|
---|
36 | void Read(FILE* fid,char* kstr);
|
---|
37 | int Id(){_error2_("Not implemented yet.");};
|
---|
38 | int MyRank(){_error2_("Not implemented yet.");};
|
---|
39 | void Marshall(char** pmarshalled_dataset){_error2_("Not implemented yet.");};
|
---|
40 | int MarshallSize(){_error2_("Not implemented yet.");};
|
---|
41 | void Demarshall(char** pmarshalled_dataset){_error2_("Not implemented yet.");};
|
---|
42 | int ObjectEnum(){_error2_("Not implemented yet.");};
|
---|
43 | Object* copy(){_error2_("Not implemented yet.");};
|
---|
44 | /*}}}*/
|
---|
45 |
|
---|
46 | };
|
---|
47 | #endif /* _KML_LATLONBOX_H */
|
---|
48 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.