Changeset 4539 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Jun 7, 2005, 11:41:06 AM (20 years ago)
- Location:
- orxonox/trunk/src/lib
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/Makefile.am
r4527 r4539 15 15 16 16 noinst_HEADERS = cd_engine.h \ 17 collision_defs.h \ 17 18 collision.h \ 18 19 obb.h \ -
orxonox/trunk/src/lib/collision_detection/Makefile.in
r4527 r4539 196 196 197 197 noinst_HEADERS = cd_engine.h \ 198 collision_defs.h \ 198 199 collision.h \ 199 200 obb.h \ -
orxonox/trunk/src/lib/graphics/importer/material.cc
r4371 r4539 295 295 { 296 296 PRINTF(4)("setting Diffuse Map %s\n", dMap); 297 if (this->diffuseTexture) 298 ResourceManager::getInstance()->unload(this->diffuseTexture); 297 299 298 300 //! \todo check if RESOURCE MANAGER is availiable -
orxonox/trunk/src/lib/lang/base_object.h
r4470 r4539 28 28 void loadParams(const TiXmlElement* root); 29 29 30 void set ClassID(int id);31 void setClassName(const char* className);32 void setClassID(int id, const char* className);30 void setName (const char* newName); 31 /** \brief returns the Name of this Object */ 32 const char* getName (void)const { return this->objectName; }; 33 33 34 34 /** \returns the className of the corresponding Object */ … … 41 41 /** \returns if the object is finalized */ 42 42 inline bool isFinalized() { return this->finalized; } 43 44 45 protected: 46 void setClassID(int id); 47 void setClassName(const char* className); 48 void setClassID(int id, const char* className); 49 43 50 /** \brief this finalizes an object and makes it ready to be garbage collected */ 44 51 void finalize(void) { this->finalized = true; }; 45 46 void setName (const char* newName);47 /** \brief returns the Name of this Object */48 const char* getName (void)const { return this->objectName; };49 52 50 53 private: -
orxonox/trunk/src/lib/physics/Makefile.am
r4428 r4539 15 15 physics_connection.h \ 16 16 physics_engine.h \ 17 fields/fields.h \ 17 18 fields/field.h \ 18 19 fields/gravity.h \ -
orxonox/trunk/src/lib/physics/Makefile.in
r4506 r4539 199 199 physics_connection.h \ 200 200 physics_engine.h \ 201 fields/fields.h \ 201 202 fields/field.h \ 202 203 fields/gravity.h \
Note: See TracChangeset
for help on using the changeset viewer.