#ifndef PRINT_HPP #define PRINT_HPP #include #include #include class Logger { public: static void log(const char* format, ...); static void err(const char* format, ...); }; #endif // PRINT_HPP