#ifndef UTILS_H_INCLUDED #define UTILS_H_INCLUDED class Converter { public: static std::string toString( bool v ) { return v ? "true" : "false"; } }; #endif // UTILS_H_INCLUDED