forked from University/epr24pr5-ojanssen2
15 lines
317 B
C
15 lines
317 B
C
|
#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<int> read_numbers(istream& is);
|
||
|
static vector<string> split(const string& s);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // UTIL_H
|