source: issm/trunk/src/c/objects/KML/KML_Geometry.cpp@ 8207

Last change on this file since 8207 was 8207, checked in by jschierm, 14 years ago

KML file reader: First round of changes to KML objects.

File size: 1.9 KB
Line 
1/*!\file KML_Geometry.cpp
2 * \brief: implementation of the kml_geometry abstract object
3 */
4
5/*Headers:*/
6/*{{{1*/
7#ifdef HAVE_CONFIG_H
8 #include "config.h"
9#else
10#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
11#endif
12
13#include "stdio.h"
14#include <string.h>
15#include "../objects.h"
16#include "../../shared/shared.h"
17#include "../../Container/Container.h"
18#include "../../include/include.h"
19/*}}}*/
20
21/*Constructors/destructor/copy*/
22/*FUNCTION KML_Geometry::KML_Geometry(){{{1*/
23KML_Geometry::KML_Geometry(){
24
25 ;
26
27}
28/*}}}*/
29/*FUNCTION KML_Geometry::~KML_Geometry(){{{1*/
30KML_Geometry::~KML_Geometry(){
31
32 ;
33
34}
35/*}}}*/
36
37/*Other*/
38/*FUNCTION KML_Geometry::Echo {{{1*/
39void KML_Geometry::Echo(){
40
41 this->KML_Object::Echo();
42
43 return;
44}
45/*}}}*/
46
47/*FUNCTION KML_Geometry::DeepEcho {{{1*/
48void KML_Geometry::DeepEcho(){
49
50 char indent[81]="";
51
52 KML_Geometry::DeepEcho(indent);
53
54 return;
55}
56/*}}}*/
57
58/*FUNCTION KML_Geometry::DeepEcho {{{1*/
59void KML_Geometry::DeepEcho(char* indent){
60
61 this->KML_Object::DeepEcho(indent);
62
63 return;
64}
65/*}}}*/
66
67/*FUNCTION KML_Geometry::Write {{{1*/
68void KML_Geometry::Write(FILE* filout,char* indent){
69
70 this->KML_Object::Write(filout,indent);
71
72 return;
73}
74/*}}}*/
75
76/*FUNCTION KML_Geometry::Read {{{1*/
77KML_Object* KML_Geometry::Read(FILE* filin,char* kstr){
78
79
80 return(NULL);
81}
82/*}}}*/
83
84/*FUNCTION KML_Geometry::Id {{{1*/
85int KML_Geometry::Id(){
86}
87/*}}}*/
88
89/*FUNCTION KML_Geometry::MyRank {{{1*/
90int KML_Geometry::MyRank(){
91}
92/*}}}*/
93
94/*FUNCTION KML_Geometry::Marshall {{{1*/
95void KML_Geometry::Marshall(char** pmarshalled_dataset){
96}
97/*}}}*/
98
99/*FUNCTION KML_Geometry::MarshallSize {{{1*/
100int KML_Geometry::MarshallSize(){
101}
102/*}}}*/
103
104/*FUNCTION KML_Geometry::Demarshall {{{1*/
105void KML_Geometry::Demarshall(char** pmarshalled_dataset){
106}
107/*}}}*/
108
109/*FUNCTION KML_Geometry::Enum {{{1*/
110int KML_Geometry::Enum(){
111}
112/*}}}*/
113
114/*FUNCTION KML_Geometry::copy {{{1*/
115Object* KML_Geometry::copy(){
116}
117/*}}}*/
118
Note: See TracBrowser for help on using the repository browser.