//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield //Distributed under the terms of the GNU Library General Public License (LGPL) //as published by the Free Software Foundation. #ifndef OSGDB_FILENAMEUTILS #define OSGDB_FILENAMEUTILS 1 #include #include namespace osgDB { extern OSGDB_EXPORT std::string getFilePath(const std::string& filename); extern OSGDB_EXPORT std::string getFileExtension(const std::string& filename); extern OSGDB_EXPORT std::string getLowerCaseFileExtension(const std::string& filename); extern OSGDB_EXPORT std::string getSimpleFileName(const std::string& fileName); extern OSGDB_EXPORT std::string getStrippedName(const std::string& fileName); extern OSGDB_EXPORT bool equalCaseInsensitive(const std::string& lhs,const std::string& rhs); extern OSGDB_EXPORT bool equalCaseInsensitive(const std::string& lhs,const char* rhs); } #endif