#ifndef UXLOGGER_HPP #define UXLOGGER_HPP #include #include #include #include #include class UxLogger { private: std::string label; public: UxLogger(std::string ilabel); UxLogger(); void Log(const std::string& message); }; extern UxLogger uxlogger; #endif