Removed renduent osgDB::Registry DatabasePager methods

This commit is contained in:
Robert Osfield
2008-10-30 13:05:08 +00:00
parent 5141397d6f
commit ae61033a32
3 changed files with 0 additions and 41 deletions

View File

@@ -466,17 +466,7 @@ class OSGDB_EXPORT Registry : public osg::Referenced
/** get the attached library with specified name.*/
DynamicLibrary* getLibrary(const std::string& fileName);
/** Set the DatabasePager.*/
void setDatabasePager(DatabasePager* databasePager) { _databasePager = databasePager; }
/** Get the DatabasePager, creating one if one is not already created.*/
DatabasePager* getOrCreateDatabasePager();
/** Get the DatabasePager. Return 0 if no DatabasePager has been assigned.*/
DatabasePager* getDatabasePager() { return _databasePager.get(); }
/** Set the SharedStateManager.*/
void setSharedStateManager(SharedStateManager* SharedStateManager) { _sharedStateManager = SharedStateManager; }
@@ -609,7 +599,6 @@ class OSGDB_EXPORT Registry : public osg::Referenced
ArchiveExtensionList _archiveExtList;
osg::ref_ptr<DatabasePager> _databasePager;
osg::ref_ptr<SharedStateManager> _sharedStateManager;
};