Go to the documentation of this file.
25 #ifndef PRESAGE_UTILITY
26 #define PRESAGE_UTILITY
38 static std::string&
strtolower( std::string& );
39 static std::string
strtolower(
const std::string& );
41 static std::string
strtoupper(
const std::string& );
46 static bool isTrue(
const char* );
47 static bool isTrue(
const std::string& );
49 static bool isFalse(
const char* );
50 static bool isFalse(
const std::string& );
52 static bool isYesNo(
const char* );
53 static bool isYesNo(
const std::string& );
55 static bool isYes(
const char* );
56 static bool isYes(
const std::string& );
58 static bool isNo(
const char* );
59 static bool isNo(
const std::string& );
61 static double toDouble(
const std::string);
62 static int toInt (
const std::string);
64 static std::string
dirname (
const std::string&);
65 static std::string
filename (
const std::string&);
72 #endif // PRESAGE_UTILITY