Changeset 4836 in orxonox.OLD for orxonox/trunk/src/util/resource_manager.h
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/resource_manager.h
r4746 r4836 1 1 /*! 2 2 \file resource_manager.h 3 \briefThe Resource Manager checks if a file/resource is loaded.3 * The Resource Manager checks if a file/resource is loaded. 4 4 5 5 If a file/resource was already loaded the resourceManager will … … 99 99 public: 100 100 virtual ~ResourceManager(); 101 /** \returns a Pointer to the only object of this Class */101 /** @returns a Pointer to the only object of this Class */ 102 102 inline static ResourceManager* getInstance() { if (!singletonRef) singletonRef = new ResourceManager(); return singletonRef; }; 103 103 104 104 bool setDataDir(const char* dataDir); 105 /** \returns the Name of the data directory */105 /** @returns the Name of the data directory */ 106 106 inline const char* getDataDir() const {return this->dataDir;} 107 107
Note: See TracChangeset
for help on using the changeset viewer.