#include #include //From http://www.richelbilderbeek.nl/CppCanCast.htm template const bool CanCast(const std::string& from) { std::istringstream i(from); TargetType temp; return ( (i >> temp) ? true : false ); }