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

#include <KML_Attribute.h>

Inheritance diagram for KML_Attribute:
Object

Public Member Functions

 KML_Attribute ()
 
 ~KML_Attribute ()
 
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 *namei, const char *valuei)
 
void Add (DataSet *attrib)
 
void Get (char **pvalueo, char *deflt)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

char * name
 
char * value
 

Detailed Description

Definition at line 13 of file KML_Attribute.h.

Constructor & Destructor Documentation

◆ KML_Attribute()

KML_Attribute::KML_Attribute ( )

Definition at line 18 of file KML_Attribute.cpp.

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

◆ ~KML_Attribute()

KML_Attribute::~KML_Attribute ( )

Definition at line 25 of file KML_Attribute.cpp.

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

Member Function Documentation

◆ Echo()

void KML_Attribute::Echo ( void  )
virtual

Implements Object.

Definition at line 34 of file KML_Attribute.cpp.

34  {/*{{{*/
35 
36  int i;
37  bool flag=true;
38 
39  if(flag) _printf0_(" ");
40  for (i=0;i<10-strlen(name);i++)
41  if(flag) _printf0_(" ");
42  if(flag) _printf0_(name << ": \"" << value << "\"\n");
43 
44  return;
45 }

◆ DeepEcho() [1/2]

void KML_Attribute::DeepEcho ( void  )
virtual

Implements Object.

Definition at line 47 of file KML_Attribute.cpp.

47  {/*{{{*/
48 
49  char indent[81]="";
50 
52 
53  return;
54 }

◆ DeepEcho() [2/2]

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

Definition at line 56 of file KML_Attribute.cpp.

56  {/*{{{*/
57 
58  int i;
59  bool flag=true;
60 
61  if(flag) _printf0_(indent << " ");
62  for (i=0;i<10-strlen(name);i++)
63  if(flag) _printf0_(" ");
64  if(flag) _printf0_(name << ": \"" << value << "\"\n");
65 
66  return;
67 }

◆ Id()

int KML_Attribute::Id ( void  )
inlinevirtual

Implements Object.

Definition at line 28 of file KML_Attribute.h.

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

◆ ObjectEnum()

int KML_Attribute::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Definition at line 29 of file KML_Attribute.h.

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

◆ copy()

Object* KML_Attribute::copy ( void  )
inlinevirtual

Implements Object.

Definition at line 30 of file KML_Attribute.h.

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

◆ Marshall()

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

Implements Object.

Definition at line 31 of file KML_Attribute.h.

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

◆ Write()

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

Definition at line 69 of file KML_Attribute.cpp.

69  {/*{{{*/
70 
71 // attributes always written in keyword line of kml_object
72 
73  fprintf(filout,"%s%s=\"%s\"",indent,name,value);
74 
75  return;
76 }

◆ Read()

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

Definition at line 78 of file KML_Attribute.cpp.

78  {/*{{{*/
79 
80 // attributes always read in keyword line of kml_object
81 
82  ;
83 
84  return;
85 }

◆ Alloc()

void KML_Attribute::Alloc ( const char *  namei,
const char *  valuei 
)

Definition at line 87 of file KML_Attribute.cpp.

87  {/*{{{*/
88 
89  name =xNew<char>(strlen(namei )+1);
90  memcpy(name,namei,(strlen(namei)+1)*sizeof(char));
91 
92  value=xNew<char>(strlen(valuei)+1);
93  memcpy(value,valuei,(strlen(valuei)+1)*sizeof(char));
94 
95  return;
96 }

◆ Add()

void KML_Attribute::Add ( DataSet attrib)

Definition at line 98 of file KML_Attribute.cpp.

98  {/*{{{*/
99 
100  attrib->AddObject((Object*)this);
101 
102  return;
103 }

◆ Get()

void KML_Attribute::Get ( char **  pvalueo,
char *  deflt 
)

Definition at line 105 of file KML_Attribute.cpp.

105  {/*{{{*/
106 
107  if (!value || !strlen(value)) {
108  *pvalueo=xNew<char>(strlen(deflt)+1);
109  memcpy(*pvalueo,deflt,(strlen(deflt)+1)*sizeof(char));
110  }
111  else {
112  *pvalueo=xNew<char>(strlen(value)+1);
113  memcpy(*pvalueo,value,(strlen(value)+1)*sizeof(char));
114  }
115 
116  return;
117 }

Field Documentation

◆ name

char* KML_Attribute::name

Definition at line 17 of file KML_Attribute.h.

◆ value

char* KML_Attribute::value

Definition at line 18 of file KML_Attribute.h.


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