Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
KML_Comment Class Reference

#include <KML_Comment.h>

Inheritance diagram for KML_Comment:
Object

Public Member Functions

 KML_Comment ()
 
 ~KML_Comment ()
 
virtual void Echo ()
 
virtual void DeepEcho ()
 
virtual void DeepEcho (const char *indent)
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
void Write (FILE *fid, const char *indent)
 
void Read (FILE *fid, char *kstr)
 
void Alloc (const char *valuei)
 
void Add (DataSet *commnt)
 
void Get (char **pvalueo)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

char * name
 
char * value
 

Detailed Description

Definition at line 14 of file KML_Comment.h.

Constructor & Destructor Documentation

◆ KML_Comment()

KML_Comment::KML_Comment ( )

Definition at line 18 of file KML_Comment.cpp.

18  {/*{{{*/
19 
20  value =NULL;
21 
22 }

◆ ~KML_Comment()

KML_Comment::~KML_Comment ( )

Definition at line 24 of file KML_Comment.cpp.

24  {/*{{{*/
25 
26  if (value ) xDelete<char>(value);
27 
28 }

Member Function Documentation

◆ Echo()

void KML_Comment::Echo ( void  )
virtual

Implements Object.

Definition at line 32 of file KML_Comment.cpp.

32  {/*{{{*/
33 
34  bool flag=true;
35 
36  if(flag) _printf0_(" ");
37  if(flag) _printf0_(value << "\n");
38 
39  return;
40 }

◆ DeepEcho() [1/2]

void KML_Comment::DeepEcho ( void  )
virtual

Implements Object.

Definition at line 42 of file KML_Comment.cpp.

42  {/*{{{*/
43 
44  char indent[81]="";
45 
46  KML_Comment::DeepEcho(indent);
47 
48  return;
49 }

◆ DeepEcho() [2/2]

void KML_Comment::DeepEcho ( const char *  indent)
virtual

Definition at line 51 of file KML_Comment.cpp.

51  {/*{{{*/
52 
53  bool flag=true;
54 
55  if(flag) _printf0_(indent << " ");
56  if(flag) _printf0_(value << "\n");
57 
58  return;
59 }

◆ Id()

int KML_Comment::Id ( void  )
inlinevirtual

Implements Object.

Definition at line 29 of file KML_Comment.h.

29 {_error_("Not implemented yet.");};

◆ ObjectEnum()

int KML_Comment::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Definition at line 30 of file KML_Comment.h.

30 {_error_("Not implemented yet.");};

◆ copy()

Object* KML_Comment::copy ( void  )
inlinevirtual

Implements Object.

Definition at line 31 of file KML_Comment.h.

31 {_error_("Not implemented yet.");};

◆ Marshall()

void KML_Comment::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Definition at line 32 of file KML_Comment.h.

32 { _error_("not implemented yet!");};

◆ Write()

void KML_Comment::Write ( FILE *  fid,
const char *  indent 
)

Definition at line 61 of file KML_Comment.cpp.

61  {/*{{{*/
62 
63  if (strncmp(&value[0] ,"<!--",4))
64  fprintf(filout,"%s<!--\n",indent);
65  fprintf(filout,"%s %s\n",indent,value);
66  if (strncmp(&value[strlen(value)-3],"-->" ,3))
67  fprintf(filout,"%s-->\n",indent);
68 
69  return;
70 }

◆ Read()

void KML_Comment::Read ( FILE *  fid,
char *  kstr 
)

Definition at line 72 of file KML_Comment.cpp.

72  {/*{{{*/
73 
74 // comments always read as part of KMLFileToken
75 
76  ;
77 
78  return;
79 }

◆ Alloc()

void KML_Comment::Alloc ( const char *  valuei)

Definition at line 81 of file KML_Comment.cpp.

81  {/*{{{*/
82 
83  value=xNew<char>(strlen(valuei)+1);
84  memcpy(value,valuei,(strlen(valuei)+1)*sizeof(char));
85 
86  return;
87 }

◆ Add()

void KML_Comment::Add ( DataSet commnt)

Definition at line 89 of file KML_Comment.cpp.

89  {/*{{{*/
90 
91  commnt->AddObject((Object*)this);
92 
93  return;
94 }

◆ Get()

void KML_Comment::Get ( char **  pvalueo)

Definition at line 96 of file KML_Comment.cpp.

96  {/*{{{*/
97 
98  *pvalueo=xNew<char>(strlen(value)+1);
99  memcpy(*pvalueo,value,(strlen(value)+1)*sizeof(char));
100 
101  return;
102 }

Field Documentation

◆ name

char* KML_Comment::name

Definition at line 18 of file KML_Comment.h.

◆ value

char* KML_Comment::value

Definition at line 19 of file KML_Comment.h.


The documentation for this class was generated from the following files:
_printf0_
#define _printf0_(StreamArgs)
Definition: Print.h:29
KML_Comment::DeepEcho
virtual void DeepEcho()
Definition: KML_Comment.cpp:42
DataSet::AddObject
int AddObject(Object *object)
Definition: DataSet.cpp:252
KML_Comment::value
char * value
Definition: KML_Comment.h:19
Object
Definition: Object.h:13
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49