Changeset 7205 in orxonox.OLD for branches/std/src/lib/graphics/importer
- Timestamp:
- Mar 9, 2006, 8:47:20 PM (19 years ago)
- Location:
- branches/std/src/lib/graphics/importer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/std/src/lib/graphics/importer/md2Model.h
r7203 r7205 194 194 private: 195 195 bool loadModel(const std::string& fileName); 196 bool loadSkin(const std::string& fileName = NULL);196 bool loadSkin(const std::string& fileName = ""); 197 197 198 198 public: … … 223 223 224 224 public: 225 MD2Model(const std::string& modelFileName, const std::string& skinFileName = NULL, float scale = 1.0f);225 MD2Model(const std::string& modelFileName, const std::string& skinFileName = "", float scale = 1.0f); 226 226 virtual ~MD2Model(); 227 227 -
branches/std/src/lib/graphics/importer/movie_player.h
r7203 r7205 58 58 public: 59 59 60 MoviePlayer(const std::string& filename = NULL);60 MoviePlayer(const std::string& filename = ""); 61 61 virtual ~MoviePlayer(); 62 62 -
branches/std/src/lib/graphics/importer/static_model.h
r7203 r7205 95 95 { 96 96 public: 97 StaticModel(const std::string& modelName = NULL);97 StaticModel(const std::string& modelName = ""); 98 98 virtual ~StaticModel(); 99 99 -
branches/std/src/lib/graphics/importer/texture.h
r7203 r7205 18 18 { 19 19 public: 20 Texture(const std::string& imageName = NULL, GLenum target = GL_TEXTURE_2D);20 Texture(const std::string& imageName = "", GLenum target = GL_TEXTURE_2D); 21 21 // Texture(TEXTURE_TYPE type, int resolution); 22 22 virtual ~Texture();
Note: See TracChangeset
for help on using the changeset viewer.