//Read the console line input inc spaces std::string functions::readLine() { std::string line; while (line == "") { std::getline(std::cin, line); } return line; }