Changeset 11237 for issm/trunk/src/c/objects/KML/KML_Attribute.cpp
- Timestamp:
- 01/27/12 08:19:58 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 autom4te.cache 2 aclocal.m4 1 3 bin 4 config.log 5 config.h 6 config.h.in 7 config.status 2 8 configure 9 doxygen 10 ISSM.paf 11 ISSM.ppf 12 ISSM.ppf_cache 13 libtool 14 list 3 15 Makefile 4 16 Makefile.in 5 ISSM.paf6 list7 ISSM.ppf_cache8 config.log9 config.h10 .ignore.txt11 config.status12 17 stamp-h1 13 18 svn-commit* 14 ISSM.ppf15 config.h.in16 autom4te.cache17 aclocal.m418 doxygen
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
issm/trunk/src/c/objects/KML/KML_Attribute.cpp
r9761 r11237 53 53 } 54 54 /*}}}*/ 55 56 55 /*FUNCTION KML_Attribute::DeepEcho {{{1*/ 57 56 void KML_Attribute::DeepEcho(){ … … 64 63 } 65 64 /*}}}*/ 66 67 65 /*FUNCTION KML_Attribute::DeepEcho {{{1*/ 68 void KML_Attribute::DeepEcho(c har* indent){66 void KML_Attribute::DeepEcho(const char* indent){ 69 67 70 68 int i; … … 79 77 } 80 78 /*}}}*/ 81 82 79 /*FUNCTION KML_Attribute::Write {{{1*/ 83 void KML_Attribute::Write(FILE* filout,c har* indent){80 void KML_Attribute::Write(FILE* filout,const char* indent){ 84 81 85 82 // attributes always written in keyword line of kml_object … … 90 87 } 91 88 /*}}}*/ 92 93 89 /*FUNCTION KML_Attribute::Read {{{1*/ 94 90 void KML_Attribute::Read(FILE* fid,char* kstr){ … … 101 97 } 102 98 /*}}}*/ 103 104 99 /*FUNCTION KML_Attribute::Alloc {{{1*/ 105 void KML_Attribute::Alloc(c har* namei,char* valuei){100 void KML_Attribute::Alloc(const char* namei,const char* valuei){ 106 101 107 102 name =(char *) xmalloc((strlen(namei )+1)*sizeof(char)); … … 114 109 } 115 110 /*}}}*/ 116 117 111 /*FUNCTION KML_Attribute::Add {{{1*/ 118 112 void KML_Attribute::Add(DataSet* attrib){ … … 123 117 } 124 118 /*}}}*/ 125 126 119 /*FUNCTION KML_Attribute::Get {{{1*/ 127 120 void KML_Attribute::Get(char** pvalueo,char* deflt){ … … 139 132 } 140 133 /*}}}*/ 141
Note:
See TracChangeset
for help on using the changeset viewer.