Minor tweak to ConfigUtility

This commit is contained in:
Kayne Ruse
2014-07-31 17:14:40 +10:00
parent 414a0896c9
commit 46f02dcfdd
2 changed files with 13 additions and 19 deletions
+3 -9
View File
@@ -39,15 +39,9 @@ public:
bool Boolean(std::string);
//shorthand
std::string& operator[](std::string s) {
return String(s);
}
int Int(std::string s) {
return Integer(s);
}
bool Bool(std::string s) {
return Boolean(s);
}
inline std::string& operator[](std::string s) { return String(s); }
inline int Int(std::string s) { return Integer(s); }
inline bool Bool(std::string s) { return Boolean(s); }
//OO breaker
std::map<std::string, std::string>* GetMap() {