00001 #ifndef _UTILS_H 00002 #define _UTILS_H 00003 00004 #include <sstream> 00005 #include <string> 00007 00014 template<typename A, typename B> 00015 B convertTo(A a) 00016 { 00017 B ret; 00018 std::stringstream ss; 00019 ss << a; 00020 ss >> ret; 00021 return ret; 00022 } 00023 00031 void chomp(std::string &str); 00032 00033 #endif