mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
21 lines
266 B
C++
21 lines
266 B
C++
//
|
|
// 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
|