Sokoban
|
#include <sstream>
#include <iomanip>
#include <vector>
Namespaces | |
MyTools | |
Namespace which contains utility functions which are used from more classes in the project. | |
Functions | |
void | MyTools::split (const std::string &s, char separator, std::vector< std::string > &elems) |
Splits string according to the separator. More... | |
int | MyTools::str_to_int (const std::string &str) |
Converts string to integer. More... | |
void | MyTools::sec_to_string_stream (uint64_t sec, std::stringstream &ss) |
Converts seconds to hh:mm:ss format and writes it to a strigstream. More... | |