source: issm/trunk/src/c/kml/KML_Document.h@ 25836

Last change on this file since 25836 was 25836, checked in by Mathieu Morlighem, 4 years ago

merged trunk-jpl and trunk for revision 25834

File size: 875 bytes
Line 
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:*/
9/*{{{*/
10#include "../shared/shared.h"
11#include "./KML_Container.h"
12class KML_Feature;
13/*}}}*/
14
15class KML_Document: public KML_Container {
16
17 public:
18
19 /*KML_Document constructors, destructors {{{*/
20 KML_Document();
21 ~KML_Document();
22 /*}}}*/
23 /*Object virtual functions definitions:{{{ */
24 void Echo();
25 void DeepEcho();
26 void DeepEcho(const char* indent);
27 void Write(FILE* fid,const char* indent);
28 void Read(FILE* fid,char* kstr);
29 int Id(){_error_("Not implemented yet.");};
30 int ObjectEnum(){_error_("Not implemented yet.");};
31 Object* copy(){_error_("Not implemented yet.");};
32 void Marshall(MarshallHandle* marshallhandle){ _error_("not implemented yet!");};
33 /*}}}*/
34
35};
36#endif /* _KML_DOCUMENT_H */
Note: See TracBrowser for help on using the repository browser.