#ifndef GENERICS_H_ #define GENERICS_H_ #include #include namespace sc { template T from_string(const std::string& val) { T result; std::istringstream iss {val}; iss >> result; return result; } } #endif // GENERICS_H_