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

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

CHG: cosmetics, removing all deboule blank lines and indent single white lines correctly

File size: 970 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 "../../../include/include.h"
11#include "../../../shared/Exceptions/exceptions.h"
12#include "../../../EnumDefinitions/EnumDefinitions.h"
13
14#include "./KML_Object.h"
15/*}}}*/
16
17class 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(){_error_("Not implemented yet.");};
38 int ObjectEnum(){_error_("Not implemented yet.");};
39 Object* copy(){_error_("Not implemented yet.");};
40 /*}}}*/
41
42};
43#endif /* _KML_LATLONBOX_H */
Note: See TracBrowser for help on using the repository browser.