Changeset 8081 for code/branches/kicklib/src/libraries
- Timestamp:
- Mar 17, 2011, 2:28:23 AM (14 years ago)
- Location:
- code/branches/kicklib/src/libraries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib/src/libraries/core/Resource.cc
r6746 r8081 36 36 namespace orxonox 37 37 { 38 std::string Resource::DEFAULT_GROUP(Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME); 38 const std::string& Resource::getDefaultResourceGroup() 39 { 40 return Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME; 41 } 39 42 40 43 DataStreamPtr Resource::open(const std::string& name) 41 44 { 42 45 return Ogre::ResourceGroupManager::getSingleton().openResource(name, 43 Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, true);46 getDefaultResourceGroup(), true); 44 47 } 45 48 -
code/branches/kicklib/src/libraries/core/Resource.h
r7401 r8081 137 137 138 138 //! Name of the default resource group (usually "General") 139 static std::string DEFAULT_GROUP;139 static const std::string& getDefaultResourceGroup(); 140 140 141 141 private: -
code/branches/kicklib/src/libraries/tools/ResourceCollection.cc
r7401 r8081 45 45 46 46 // Default group is "General" 47 this->setResourceGroup(Resource:: DEFAULT_GROUP);47 this->setResourceGroup(Resource::getDefaultResourceGroup()); 48 48 } 49 49
Note: See TracChangeset
for help on using the changeset viewer.