diff --git a/lib/Core/Utilities.hpp b/lib/Core/Utilities.hpp index 0ca5e4a..448fb46 100644 --- a/lib/Core/Utilities.hpp +++ b/lib/Core/Utilities.hpp @@ -108,6 +108,23 @@ inline std::string strFrom(const T x) } // specialization for vectors +template<> +inline std::vector strTo>(const std::string &str) +{ + std::vector res; + std::vector vbuf; + double buf; + std::istringstream stream(str); + + while (!stream.eof()) + { + stream >> buf; + vbuf.push_back(buf); + } + + return res; +} + template<> inline DVec strTo(const std::string &str) {