1 | // LAF OS Library |
---|---|
2 | // Copyright (C) 2012-2014 David Capello |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef OS_LOGGER_H_INCLUDED |
8 | #define OS_LOGGER_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace os { |
12 | |
13 | class Logger { |
14 | public: |
15 | virtual ~Logger() { } |
16 | virtual void logError(const char* error) = 0; |
17 | }; |
18 | |
19 | } // namespace os |
20 | |
21 | #endif |
22 |