96165a8541
In my PR updating clang-format, I forgot to also format the headers.
15 lines
227 B
C++
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 {
|
|
}
|
|
};
|
|
}
|
|
}
|