Files
stvpn/uxlogger.hpp
T
Олег Бородин eda9b8986b working commit
2026-05-05 11:37:10 +02:00

23 lines
339 B
C++

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