|
Last change
on this file since 25836 was 25836, checked in by Mathieu Morlighem, 5 years ago |
|
merged trunk-jpl and trunk for revision 25834
|
|
File size:
875 bytes
|
| Rev | Line | |
|---|
| [7653] | 1 | /*! \file KML_Document.h
|
|---|
| 2 | * \brief: header file for kml_document object
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | #ifndef _KML_DOCUMENT_H_
|
|---|
| 6 | #define _KML_DOCUMENT_H_
|
|---|
| 7 |
|
|---|
| 8 | /*Headers:*/
|
|---|
| [12365] | 9 | /*{{{*/
|
|---|
| [15068] | 10 | #include "../shared/shared.h"
|
|---|
| [7653] | 11 | #include "./KML_Container.h"
|
|---|
| 12 | class KML_Feature;
|
|---|
| 13 | /*}}}*/
|
|---|
| 14 |
|
|---|
| 15 | class KML_Document: public KML_Container {
|
|---|
| 16 |
|
|---|
| 17 | public:
|
|---|
| 18 |
|
|---|
| [12365] | 19 | /*KML_Document constructors, destructors {{{*/
|
|---|
| [7653] | 20 | KML_Document();
|
|---|
| 21 | ~KML_Document();
|
|---|
| 22 | /*}}}*/
|
|---|
| [12365] | 23 | /*Object virtual functions definitions:{{{ */
|
|---|
| [7653] | 24 | void Echo();
|
|---|
| 25 | void DeepEcho();
|
|---|
| [11201] | 26 | void DeepEcho(const char* indent);
|
|---|
| [11202] | 27 | void Write(FILE* fid,const char* indent);
|
|---|
| [8208] | 28 | void Read(FILE* fid,char* kstr);
|
|---|
| [13036] | 29 | int Id(){_error_("Not implemented yet.");};
|
|---|
| 30 | int ObjectEnum(){_error_("Not implemented yet.");};
|
|---|
| 31 | Object* copy(){_error_("Not implemented yet.");};
|
|---|
| [25836] | 32 | void Marshall(MarshallHandle* marshallhandle){ _error_("not implemented yet!");};
|
|---|
| [7653] | 33 | /*}}}*/
|
|---|
| 34 |
|
|---|
| 35 | };
|
|---|
| 36 | #endif /* _KML_DOCUMENT_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.