diff options
Diffstat (limited to 'src/Logging/Logger.h')
| -rw-r--r-- | src/Logging/Logger.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Logging/Logger.h b/src/Logging/Logger.h new file mode 100644 index 0000000..95d21dc --- /dev/null +++ b/src/Logging/Logger.h @@ -0,0 +1,11 @@ +#pragma once + +namespace Pinetime { + namespace Logging { + class Logger { + public: + virtual void Init() = 0; + virtual void Resume() = 0; + }; + } +}
\ No newline at end of file |
