#include "strutils.hxx"
+#include <osgDB/FileNameUtils> // for convertToLowerCase
+
+using std::string;
+using std::vector;
+
namespace simgear {
namespace strutils {
return do_strip( s, BOTHSTRIP );
}
+ string convertToLowerCase(const string& str)
+ {
+ // proxy onto osgDB - easy to reimplement here, but let's avoid
+ // code duplication for the moment.
+ return osgDB::convertToLowerCase(str);
+ }
+
} // end namespace strutils
} // end namespace simgear
#include <simgear/compiler.h>
#include <string>
-
#include <vector>
-using std::vector;
-
#include <cstdlib>
-using std::string;
namespace simgear {
- namespace strutils {
+ namespace strutils {
// /**
// * atof() wrapper for "string" type
* @param s String to strip.
* @return The stripped string.
*/
- string lstrip( const string& s );
- string rstrip( const string& s );
- string strip( const string& s );
+ std::string lstrip( const std::string& s );
+ std::string rstrip( const std::string& s );
+ std::string strip( const std::string& s );
/**
* Split a string into a words using 'sep' as the delimiter string.
* resulting in at most maxsplit+1 words.
* @return Array of words.
*/
- vector<string>
- split( const string& s,
+ std::vector<std::string>
+ split( const std::string& s,
const char* sep = 0,
int maxsplit = 0 );
- } // end namespace strutils
+
+ std::string convertToLowerCase(const std::string& str);
+
+ } // end namespace strutils
} // end namespace simgear
#endif // STRUTILS_H