working commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
|
||||
#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
|
||||
Reference in New Issue
Block a user