1 // SHE 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 SHE_LOGGER_H_INCLUDED
8 #define SHE_LOGGER_H_INCLUDED
9 #pragma once
10 
11 namespace she {
12 
13   class Logger {
14   public:
~Logger()15     virtual ~Logger() { }
16     virtual void logError(const char* error) = 0;
17   };
18 
19 } // namespace she
20 
21 #endif
22