#pragma once #include "std_lib_inc.h" #ifndef UTIL_H #define UTIL_H namespace util { class Util { public: static string read_string_between_percent(istream& is); static vector read_numbers(istream& is); static vector split(const string& s); static string read_string(istream& s); }; } #endif // UTIL_H