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