Initial commit

This commit is contained in:
2019-06-15 12:00:21 +02:00
commit eda5d9df6b
31 changed files with 1328 additions and 0 deletions

20
src/logger.hpp Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#include <string>
class Logger
{
private:
Logger();
~Logger();
public:
void Success(const std::string & s);
void Error(const std::string & s);
void Info(const std::string & s);
static Logger & GetInstance();
Logger(Logger & other) = delete;
Logger(Logger && other) = delete;
Logger & operator=(Logger & other) = delete;
};