|
Last change
on this file since 12822 was 12494, checked in by Mathieu Morlighem, 14 years ago |
|
replaced all _error_ to _error2_
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | /*! \file KML_File.h
|
|---|
| 2 | * \brief: header file for kml_file object
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef _KML_FILE_H_
|
|---|
| 6 | #define _KML_FILE_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_Feature.h"
|
|---|
| 15 | class DataSet;
|
|---|
| 16 | /*}}}*/
|
|---|
| 17 |
|
|---|
| 18 | class KML_File: public KML_Object {
|
|---|
| 19 |
|
|---|
| 20 | public:
|
|---|
| 21 |
|
|---|
| 22 | /*KML_File constructors, destructors {{{*/
|
|---|
| 23 | KML_File();
|
|---|
| 24 | ~KML_File();
|
|---|
| 25 | /*}}}*/
|
|---|
| 26 | /*Object virtual functions definitions:{{{*/
|
|---|
| 27 | void Echo();
|
|---|
| 28 | void DeepEcho();
|
|---|
| 29 | void DeepEcho(const char* indent);
|
|---|
| 30 | void Write(FILE* fid,const char* indent);
|
|---|
| 31 | void Read(FILE* fid,char* kstr);
|
|---|
| 32 | void WriteExp(FILE* fid,const char* nstr,int sgn,double cm,double sp);
|
|---|
| 33 | int Id(){_error2_("Not implemented yet.");};
|
|---|
| 34 | int MyRank(){_error2_("Not implemented yet.");};
|
|---|
| 35 | void Marshall(char** pmarshalled_dataset){_error2_("Not implemented yet.");};
|
|---|
| 36 | int MarshallSize(){_error2_("Not implemented yet.");};
|
|---|
| 37 | void Demarshall(char** pmarshalled_dataset){_error2_("Not implemented yet.");};
|
|---|
| 38 | int ObjectEnum(){_error2_("Not implemented yet.");};
|
|---|
| 39 | Object* copy(){_error2_("Not implemented yet.");};
|
|---|
| 40 | /*}}}*/
|
|---|
| 41 |
|
|---|
| 42 | };
|
|---|
| 43 | #endif /* _KML_FILE_H */
|
|---|
| 44 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.