1
0
Fork 0
InfiniTime/src/logging/DummyLogger.h
Finlay Davidson 96165a8541 Format header files
In my PR updating clang-format, I forgot to also format the headers.
2023-01-09 21:41:21 +01:00

15 lines
227 B
C++

#pragma once
#include "logging/Logger.h"
namespace Pinetime {
namespace Logging {
class DummyLogger : public Logger {
public:
void Init() override {
}
void Resume() override {
}
};
}
}