Add logger component (no op atm)

This commit is contained in:
2025-05-26 14:43:52 -04:00
parent cf8c70232c
commit aa89bef583
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// Created by Johnathon Slightham on 2025-05-26.
//
#ifndef LOGGER_H
#define LOGGER_H
class Logger {
public:
static Logger &getInstance() {
static Logger instance;
return instance;
}
private:
virtual Logger();
}
#endif //LOGGER_H