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

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

KML: Initial import of all kml c++ objects.

File size: 1.8 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::Id {{{1*/
77int KML_Geometry::Id(){
78}
79/*}}}*/
80
81/*FUNCTION KML_Geometry::MyRank {{{1*/
82int KML_Geometry::MyRank(){
83}
84/*}}}*/
85
86/*FUNCTION KML_Geometry::Marshall {{{1*/
87void KML_Geometry::Marshall(char** pmarshalled_dataset){
88}
89/*}}}*/
90
91/*FUNCTION KML_Geometry::MarshallSize {{{1*/
92int KML_Geometry::MarshallSize(){
93}
94/*}}}*/
95
96/*FUNCTION KML_Geometry::Demarshall {{{1*/
97void KML_Geometry::Demarshall(char** pmarshalled_dataset){
98}
99/*}}}*/
100
101/*FUNCTION KML_Geometry::Enum {{{1*/
102int KML_Geometry::Enum(){
103}
104/*}}}*/
105
106/*FUNCTION KML_Geometry::copy {{{1*/
107Object* KML_Geometry::copy(){
108}
109/*}}}*/
110
Note: See TracBrowser for help on using the repository browser.