Changeset 7938 for code/branches/usability
- Timestamp:
- Feb 20, 2011, 7:24:04 PM (14 years ago)
- Location:
- code/branches/usability/src/libraries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/usability/src/libraries/core/OrxonoxClass.h
r7850 r7938 194 194 195 195 protected: 196 virtual ~DestructionListener() {} 197 196 198 inline void registerAsDestructionListener(OrxonoxClass* object) 197 199 { if (object) { object->registerDestructionListener(this); } } -
code/branches/usability/src/libraries/core/WeakPtr.h
r7850 r7938 129 129 130 130 /// Destructor 131 inline ~WeakPtr()131 inline virtual ~WeakPtr() 132 132 { 133 133 this->unregisterAsDestructionListener(this->base_); -
code/branches/usability/src/libraries/tools/ResourceLocation.cc
r7709 r7938 30 30 31 31 #include <OgreResourceGroupManager.h> 32 #include <OgreException.h> 32 33 #include <boost/filesystem.hpp> 33 34
Note: See TracChangeset
for help on using the changeset viewer.