1 #ifndef UTIL_H_INCLUDED 2 #define UTIL_H_INCLUDED 11 #include <boost/filesystem.hpp> 16 typedef unsigned long long ull;
17 typedef std::vector<std::pair<ll,ll>>
vll;
19 std::vector<std::string>
split(
const std::string &s,
char delim);
21 template<
typename Out>
22 void split(
const std::string &s,
char delim, Out result);
28 #endif // UTIL_H_INCLUDED unsigned long long ull
Definition: util.h:16
void createAndRemoveDir()
Definition: util.cpp:44
void removeFilesInDirectory(std::string path)
Definition: util.cpp:30
void printProcess(ull index, ull size, std::string str)
Definition: util.cpp:26
long long ll
Definition: util.h:15
std::vector< std::string > split(const std::string &s, char delim)
Definition: util.cpp:20
std::vector< std::pair< ll, ll > > vll
Definition: util.h:17