Made a few of the public methods virtual, and moved more of the class

methods to protected scope.
This commit is contained in:
Robert Osfield
2004-11-17 14:25:17 +00:00
parent 724738d81a
commit e9c403839d
2 changed files with 21 additions and 12 deletions

View File

@@ -253,7 +253,7 @@ void DatabasePager::signalEndFrame()
}
class FindCompileableGLObjectsVisitor : public osg::NodeVisitor
class DatabasePager::FindCompileableGLObjectsVisitor : public osg::NodeVisitor
{
public:
FindCompileableGLObjectsVisitor(DatabasePager::DataToCompile& dataToCompile,
@@ -333,7 +333,7 @@ public:
};
struct SortFileRequestFunctor
struct DatabasePager::SortFileRequestFunctor
{
bool operator() (const osg::ref_ptr<DatabasePager::DatabaseRequest>& lhs,const osg::ref_ptr<DatabasePager::DatabaseRequest>& rhs) const
{
@@ -726,7 +726,7 @@ void DatabasePager::removeExpiredSubgraphs(double currentFrameTime)
}
class FindPagedLODsVisitor : public osg::NodeVisitor
class DatabasePager::FindPagedLODsVisitor : public osg::NodeVisitor
{
public:
FindPagedLODsVisitor(DatabasePager::PagedLODList& pagedLODList):