#ifndef LOGS_H #define LOGS_H #include "system_global.h" #include namespace paysages { namespace system { /** * Logger streams */ class Logs { public: static std::ostream &debug(); static std::ostream &warning(); static std::ostream &error(); // Disable all logs from now on static void disable(); }; } } #endif // LOGS_H