#include #ifndef Tools #define Tools std::string padRight(std::string str, size_t totalLen) { if (str.size() < totalLen) { str.append(totalLen - str.size(), ' '); } return str; } #endif