|
Last change
on this file since 14917 was 14917, checked in by Eric.Larour, 12 years ago |
|
CHG: got rid of the include/include.h headere file, finally :)
|
|
File size:
895 bytes
|
| 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 "../../../shared/Exceptions/exceptions.h"
|
|---|
| 11 | #include "../../../EnumDefinitions/EnumDefinitions.h"
|
|---|
| 12 |
|
|---|
| 13 | #include "./KML_Feature.h"
|
|---|
| 14 | class DataSet;
|
|---|
| 15 | /*}}}*/
|
|---|
| 16 |
|
|---|
| 17 | class KML_File: public KML_Object {
|
|---|
| 18 |
|
|---|
| 19 | public:
|
|---|
| 20 |
|
|---|
| 21 | /*KML_File constructors, destructors {{{*/
|
|---|
| 22 | KML_File();
|
|---|
| 23 | ~KML_File();
|
|---|
| 24 | /*}}}*/
|
|---|
| 25 | /*Object virtual functions definitions:{{{*/
|
|---|
| 26 | void Echo();
|
|---|
| 27 | void DeepEcho();
|
|---|
| 28 | void DeepEcho(const char* indent);
|
|---|
| 29 | void Write(FILE* fid,const char* indent);
|
|---|
| 30 | void Read(FILE* fid,char* kstr);
|
|---|
| 31 | void WriteExp(FILE* fid,const char* nstr,int sgn,double cm,double sp);
|
|---|
| 32 | int Id(){_error_("Not implemented yet.");};
|
|---|
| 33 | int ObjectEnum(){_error_("Not implemented yet.");};
|
|---|
| 34 | Object* copy(){_error_("Not implemented yet.");};
|
|---|
| 35 | /*}}}*/
|
|---|
| 36 |
|
|---|
| 37 | };
|
|---|
| 38 | #endif /* _KML_FILE_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.