Changeset 3330 for OpenSceneGraph/trunk/include/osgDB/Registry
- Timestamp:
- 08/27/04 18:14:21 (9 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osgDB/Registry (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osgDB/Registry
r3272 r3330 299 299 300 300 /** Set the data file path using a single string deliminated either with ';' (Windows) or ':' (All other platforms), which is used when search for data files.*/ 301 void setDataFilePathList(const std::string& paths) { _dataFilePath.clear(); convertStringPathIntoFilePathList(paths,_dataFilePath); }301 void setDataFilePathList(const std::string& paths); 302 302 303 303 /** get the data file path which is used when search for data files.*/ … … 315 315 316 316 /** Set the library file path using a single string deliminated either with ';' (Windows) or ':' (All other platforms), which is used when search for data files.*/ 317 void setLibraryFilePathList(const std::string& paths) { _libraryFilePath.clear(); convertStringPathIntoFilePathList(paths,_libraryFilePath); }317 void setLibraryFilePathList(const std::string& paths); 318 318 319 319 /** get the library file path which is used when search for library (dso/dll's) files.*/ … … 322 322 /** get the const library file path which is used when search for library (dso/dll's) files.*/ 323 323 const FilePathList& getLibraryFilePathList() const { return _libraryFilePath; } 324 325 /** convert a string containing a list of paths deliminated either with ';' (Windows) or ':' (All other platforms) into FilePath represetation.*/326 static void convertStringPathIntoFilePathList(const std::string& paths,FilePathList& filepath);327 328 324 329 325 /** For each object in the cache which has an reference count greater than 1
