source: issm/trunk-jpl/src/c/classes/objects/KML/KML_LatLonBox.h@ 14960

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

CHG: moved EnumDefinitions to src/c/shared/Enum

File size: 917 bytes
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 "../../../shared/Exceptions/exceptions.h"
11#include "../../../shared/Enum/Enum.h"
12
13#include "./KML_Object.h"
14/*}}}*/
15
16class KML_LatLonBox: public KML_Object {
17
18 public:
19
20 double north;
21 double south;
22 double east;
23 double west;
24 double rotation;
25
26 /*KML_LatLonBox constructors, destructors {{{*/
27 KML_LatLonBox();
28 ~KML_LatLonBox();
29 /*}}}*/
30 /*Object virtual functions definitions:{{{*/
31 void Echo();
32 void DeepEcho();
33 void DeepEcho(const char* indent);
34 void Write(FILE* fid,const char* indent);
35 void Read(FILE* fid,char* kstr);
36 int Id(){_error_("Not implemented yet.");};
37 int ObjectEnum(){_error_("Not implemented yet.");};
38 Object* copy(){_error_("Not implemented yet.");};
39 /*}}}*/
40
41};
42#endif /* _KML_LATLONBOX_H */
Note: See TracBrowser for help on using the repository browser.