Changeset 10341 for OpenSceneGraph/trunk/include/osg/ProxyNode
- Timestamp:
- 06/12/09 12:08:15 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/ProxyNode (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/ProxyNode
r8325 r10341 41 41 42 42 virtual bool removeChildren(unsigned int pos,unsigned int numChildrenToRemove); 43 44 45 /** Set the optional database osgDB::Options object to use when loaded children.*/ 46 void setDatabaseOptions(osg::Referenced* options) { _databaseOptions = options; } 47 48 /** Get the optional database osgDB::Options object used when loaded children.*/ 49 osg::Referenced* getDatabaseOptions() { return _databaseOptions.get(); } 50 51 /** Get the optional database osgDB::Options object used when loaded children.*/ 52 const osg::Referenced* getDatabaseOptions() const { return _databaseOptions.get(); } 53 43 54 44 55 /** Set the database path to prepend to children's filenames.*/ … … 115 126 116 127 FileNameDatabaseRequestList _filenameList; 128 ref_ptr<Referenced> _databaseOptions; 117 129 std::string _databasePath; 118 130
