source: issm/trunk/src/c/objects/KML/KML_LatLonBox.h@ 9883

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

Method Enum is now ObjectEnum and EnumType is InstanceEnum

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/*{{{1*/
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 {{{1*/
28 KML_LatLonBox();
29 ~KML_LatLonBox();
30 /*}}}*/
31 /*Object virtual functions definitions:{{{1*/
32 void Echo();
33 void DeepEcho();
34 void DeepEcho(char* indent);
35 void Write(FILE* fid,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.