working commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <mutex>
|
||||
#include <ctime>
|
||||
|
||||
|
||||
|
||||
class Logger {
|
||||
private:
|
||||
std::string label;
|
||||
public:
|
||||
Logger(std::string ilabel);
|
||||
Logger();
|
||||
void Log(const std::string& message);
|
||||
void Logf(const std::string& format, ...);
|
||||
};
|
||||
|
||||
extern Logger logger;
|
||||
Reference in New Issue
Block a user