Changeset 8468
- Timestamp:
- 06/01/11 14:01:32 (14 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r8464 r8468 87 87 ./objects/KML/KML_Feature.cpp\ 88 88 ./objects/KML/KML_Feature.h\ 89 ./objects/KML/KML_File.cpp\ 90 ./objects/KML/KML_File.h\ 89 91 ./objects/KML/KML_Folder.cpp\ 90 92 ./objects/KML/KML_Folder.h\ … … 752 754 ./objects/KML/KML_Feature.cpp\ 753 755 ./objects/KML/KML_Feature.h\ 756 ./objects/KML/KML_File.cpp\ 757 ./objects/KML/KML_File.h\ 754 758 ./objects/KML/KML_Folder.cpp\ 755 759 ./objects/KML/KML_Folder.h\ -
issm/trunk/src/c/modules/KMLMeshWritex/KMLFileReadx.cpp
r8461 r8468 18 18 KML_Object* kobj=NULL; 19 19 KML_Document* kdoc=NULL; 20 KML_File* kfil=NULL; 20 21 21 22 clock_t clock0,clock1; … … 32 33 while (kstr=KMLFileToken(fid)) { 33 34 if (!strncmp(kstr,"<?xml" ,5) || 34 !strncmp(kstr,"<kml" ,4) ||35 // !strncmp(kstr,"<kml" ,4) || 35 36 !strncmp(kstr,"<LineString",11) || 36 37 !strncmp(kstr,"<LinearRing",11)) … … 62 63 kobj=kdoc; 63 64 } 65 if (!strncmp(kstr,"<kml",4)) { 66 kfil=new KML_File(); 67 kfil->Read(fid,kstr); 68 // kfil->DeepEcho(); 69 kobj=kfil; 70 } 64 71 65 72 // _printf_(true,"%s\n",kstr); -
issm/trunk/src/c/objects/KML/KML_Overlay.cpp
r8464 r8468 131 131 kstr, 132 132 fid); 133 133 134 else if (!strncmp(kstr,"<Icon", 5)) { 134 135 icon =new KML_Icon(); -
issm/trunk/src/c/objects/objects.h
r8464 r8468 50 50 #include "./KML/KML_Document.h" 51 51 #include "./KML/KML_Feature.h" 52 #include "./KML/KML_File.h" 52 53 #include "./KML/KML_Folder.h" 53 54 #include "./KML/KML_Geometry.h" -
issm/trunk/src/mex/Makefile.am
r8404 r8468 42 42 InterpFromMeshToGrid \ 43 43 InterpFromMesh2d \ 44 KMLFileRead \ 44 45 KMLMeshWrite \ 45 46 Mergesolutionfromftog\ … … 221 222 InterpFromMesh2d/InterpFromMesh2d.h 222 223 224 KMLFileRead_SOURCES = KMLMeshWrite/KMLFileRead.cpp\ 225 KMLMeshWrite/KMLFileRead.h 226 223 227 KMLMeshWrite_SOURCES = KMLMeshWrite/KMLMeshWrite.cpp\ 224 228 KMLMeshWrite/KMLMeshWrite.h
Note:
See TracChangeset
for help on using the changeset viewer.