Ice Sheet System Model  4.18
Code documentation
Public Member Functions
KML_Folder Class Reference

#include <KML_Folder.h>

Inheritance diagram for KML_Folder:
KML_Container KML_Feature KML_Object Object

Public Member Functions

 KML_Folder ()
 
 ~KML_Folder ()
 
void Echo ()
 
void DeepEcho ()
 
void DeepEcho (const char *indent)
 
void Write (FILE *fid, const char *indent)
 
void Read (FILE *fid, char *kstr)
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
- Public Member Functions inherited from KML_Container
 KML_Container ()
 
 ~KML_Container ()
 
void WriteExp (FILE *fid, const char *nstr, int sgn, double cm, double sp)
 
- Public Member Functions inherited from KML_Feature
 KML_Feature ()
 
 ~KML_Feature ()
 
- Public Member Functions inherited from KML_Object
 KML_Object ()
 
 ~KML_Object ()
 
int Id ()
 
int ObjectEnum ()
 
Objectcopy ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
virtual void AddAttrib (const char *name, const char *value)
 
virtual void WriteAttrib (FILE *fid, const char *indent)
 
virtual void AddCommnt (int ncom, char **pcom)
 
virtual void AddCommnt (char *value)
 
virtual void WriteCommnt (FILE *fid, const char *indent)
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Additional Inherited Members

- Data Fields inherited from KML_Container
DataSetfeature
 
- Data Fields inherited from KML_Feature
char name [KML_FEATURE_NAME_LENGTH+1]
 
bool visibility
 
bool open
 
char snippet [KML_FEATURE_SNIPPET_LENGTH+1]
 
char descript [KML_FEATURE_DESCRIPT_LENGTH+1]
 
char styleurl [KML_FEATURE_STYLEURL_LENGTH+1]
 
DataSetstyle
 
- Data Fields inherited from KML_Object
DataSetattrib
 
DataSetcommnt
 
DataSetkmlobj
 

Detailed Description

Definition at line 15 of file KML_Folder.h.

Constructor & Destructor Documentation

◆ KML_Folder()

KML_Folder::KML_Folder ( )

Definition at line 19 of file KML_Folder.cpp.

19  {/*{{{*/
20 
21  ;
22 
23 }

◆ ~KML_Folder()

KML_Folder::~KML_Folder ( )

Definition at line 25 of file KML_Folder.cpp.

25  {/*{{{*/
26 
27  ;
28 
29 }

Member Function Documentation

◆ Echo()

void KML_Folder::Echo ( void  )
virtual

Reimplemented from KML_Container.

Definition at line 33 of file KML_Folder.cpp.

33  {/*{{{*/
34 
35  bool flag=true;
36 
37  if(flag) _printf0_("KML_Folder:\n");
39 
40  return;
41 }

◆ DeepEcho() [1/2]

void KML_Folder::DeepEcho ( void  )
virtual

Reimplemented from KML_Container.

Definition at line 43 of file KML_Folder.cpp.

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

◆ DeepEcho() [2/2]

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

Reimplemented from KML_Container.

Definition at line 52 of file KML_Folder.cpp.

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

◆ Write()

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

Reimplemented from KML_Container.

Definition at line 62 of file KML_Folder.cpp.

62  {/*{{{*/
63 
64  fprintf(filout,"%s<Folder",indent);
65  WriteAttrib(filout," ");
66  fprintf(filout,">\n");
67  WriteCommnt(filout,indent);
68 
69  KML_Container::Write(filout,indent);
70 
71  fprintf(filout,"%s</Folder>\n",indent);
72 
73  return;
74 }

◆ Read()

void KML_Folder::Read ( FILE *  fid,
char *  kstr 
)
virtual

Reimplemented from KML_Container.

Definition at line 76 of file KML_Folder.cpp.

76  {/*{{{*/
77 
78  char* kstri;
79  int ncom=0;
80  char** pcom=NULL;
81 
82 /* get object attributes and check for solo tag */
83 
84  if (KMLFileTagAttrib(this,
85  kstr))
86  return;
87 
88 /* loop over and process fields within opening and closing tags */
89 
90  while((kstri=KMLFileToken(fid, &ncom,&pcom))){
91  if (!strncmp(kstri,"</Folder", 8)) {
92  xDelete<char>(kstri);
93  break;
94  }
95  else if (!strncmp(kstri,"</",2))
96  {_error_("KML_Folder::Read -- Unexpected closing tag " << kstri << ".\n");}
97  else if (strncmp(kstri,"<",1))
98  {_error_("KML_Folder::Read -- Unexpected field \"" << kstri << "\".\n");}
99 
100  else if (!strncmp(kstri,"<",1))
101  KML_Container::Read(fid,kstri);
102 
103  xDelete<char>(kstri);
104  }
105 
106  this->AddCommnt(ncom,pcom);
107 
108  for (ncom=ncom; ncom>0; ncom--) xDelete<char>(pcom[ncom-1]);
109  xDelete<char*>(pcom);
110 
111  return;
112 }

◆ Id()

int KML_Folder::Id ( void  )
inlinevirtual

Reimplemented from KML_Container.

Definition at line 29 of file KML_Folder.h.

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

◆ ObjectEnum()

int KML_Folder::ObjectEnum ( void  )
inlinevirtual

Reimplemented from KML_Container.

Definition at line 30 of file KML_Folder.h.

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

◆ copy()

Object* KML_Folder::copy ( void  )
inlinevirtual

Reimplemented from KML_Container.

Definition at line 31 of file KML_Folder.h.

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

◆ Marshall()

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

Reimplemented from KML_Container.

Definition at line 32 of file KML_Folder.h.

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

The documentation for this class was generated from the following files:
KML_Container::Echo
void Echo()
Definition: KML_Container.cpp:40
_printf0_
#define _printf0_(StreamArgs)
Definition: Print.h:29
KML_Object::WriteAttrib
virtual void WriteAttrib(FILE *fid, const char *indent)
Definition: KML_Object.cpp:288
KMLFileTagAttrib
int KMLFileTagAttrib(KML_Object *kobj, char *ktag)
Definition: KMLFileReadUtils.cpp:287
KML_Container::DeepEcho
void DeepEcho()
Definition: KML_Container.cpp:51
KMLFileToken
char * KMLFileToken(FILE *fid, int *pncom=NULL, char ***ppcom=NULL)
Definition: KMLFileReadUtils.cpp:18
KML_Container::Read
void Read(FILE *fid, char *kstr)
Definition: KML_Container.cpp:104
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
KML_Folder::DeepEcho
void DeepEcho()
Definition: KML_Folder.cpp:43
KML_Object::AddCommnt
virtual void AddCommnt(int ncom, char **pcom)
Definition: KML_Object.cpp:301
KML_Object::WriteCommnt
virtual void WriteCommnt(FILE *fid, const char *indent)
Definition: KML_Object.cpp:326
KML_Container::Write
void Write(FILE *fid, const char *indent)
Definition: KML_Container.cpp:85