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

Last change on this file since 13036 was 13036, checked in by Mathieu Morlighem, 13 years ago

CHG: renaming _error2_ _error_

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
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 MyRank(){_error_("Not implemented yet.");};
39 void Marshall(char** pmarshalled_dataset){_error_("Not implemented yet.");};
40 int MarshallSize(){_error_("Not implemented yet.");};
41 void Demarshall(char** pmarshalled_dataset){_error_("Not implemented yet.");};
42 int ObjectEnum(){_error_("Not implemented yet.");};
43 Object* copy(){_error_("Not implemented yet.");};
44 /*}}}*/
45
46};
47#endif /* _KML_LATLONBOX_H */
48
Note: See TracBrowser for help on using the repository browser.