Files
stvpn/uxlogger.hpp
T
Олег Бородин 4bed66d2bb working commit
2026-05-19 16:58:44 +02:00

27 lines
525 B
C++

#ifndef UXLOGGER_HPP
#define UXLOGGER_HPP
#include <iostream>
#include <fstream>
#include <string>
#include <mutex>
#include <ctime>
class UxLogger {
private:
std::string label;
void LogLevel(const std::string level, const std::string& message);
public:
UxLogger();
void Debug(const std::string& message);
void Info(const std::string& message);
void Warning(const std::string& message);
void Error(const std::string& message);
};
extern UxLogger uxlogger;
#endif