Changeset 9357 in orxonox.OLD for branches/proxy/src/lib/graphics/importer
- Timestamp:
- Jul 20, 2006, 2:33:37 PM (19 years ago)
- Location:
- branches/proxy/src/lib/graphics/importer
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/graphics/importer/bsp_file.cc
r9025 r9357 40 40 #include <vector> 41 41 42 using namespace std; 42 43 43 44 44 … … 96 96 if (stat( name , &results) == 0) { 97 97 PRINTF(0)("BSP FILE: Datei %s gefunden. \n", name); 98 ifstream bspFile (name, ios::in |ios::binary);98 std::ifstream bspFile (name, std::ios::in | std::ios::binary); 99 99 bspFile.read(this->header, 260); 100 100 PRINTF(0)("BSP FILE: BSPVersion: %i. \n", ((int *)(header) )[1]); -
branches/proxy/src/lib/graphics/importer/grid.cc
r6467 r9357 18 18 #include "grid.h" 19 19 20 using namespace std; 20 21 21 22 22 -
branches/proxy/src/lib/graphics/importer/interactive_model.cc
r8490 r9357 20 20 #include "glincl.h" 21 21 22 using namespace std; 22 23 23 24 24 /** -
branches/proxy/src/lib/graphics/importer/md2/md2Model.cc
r9235 r9357 22 22 23 23 24 using namespace std; 24 25 25 26 26 //! the model anorms -
branches/proxy/src/lib/graphics/importer/md3/md3_animation_cfg.cc
r9347 r9357 26 26 27 27 28 using namespace std; 28 29 29 30 30 namespace md3 -
branches/proxy/src/lib/graphics/importer/model.cc
r8316 r9357 20 20 #include "glincl.h" 21 21 22 using namespace std; 22 23 23 24 24 /** -
branches/proxy/src/lib/graphics/importer/primitive_model.cc
r9110 r9357 21 21 #include "debug.h" 22 22 23 using namespace std; 23 24 24 25 25 /** -
branches/proxy/src/lib/graphics/importer/static_model.cc
r8362 r9357 23 23 #include <stdarg.h> 24 24 25 using namespace std; 25 26 26 27 27 … … 178 178 179 179 //! @todo do we really have to delete this material?? 180 list<ModelMaterial*>::iterator modMat;180 std::list<ModelMaterial*>::iterator modMat; 181 181 for(modMat = this->materialList.begin(); modMat != this->materialList.end(); modMat++) 182 182 { … … 358 358 Material* StaticModel::findMaterialByName(const std::string& materialName) 359 359 { 360 list<ModelMaterial*>::iterator modMat;360 std::list<ModelMaterial*>::iterator modMat; 361 361 for (modMat = this->materialList.begin(); modMat != this->materialList.end(); modMat++) 362 362 if (materialName == (*modMat)->material->getName()) -
branches/proxy/src/lib/graphics/importer/vertex_array_model.cc
r8362 r9357 23 23 #include "tc.h" 24 24 25 using namespace std; 25 26 26 27 27 /////////////
Note: See TracChangeset
for help on using the changeset viewer.