MyGUI  3.4.0
MyGUI_ILogListener.h
Go to the documentation of this file.
1 /*
2  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3  * Distributed under the MIT License
4  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5  */
6 
7 #ifndef MYGUI_I_LOG_LISTENER_H_
8 #define MYGUI_I_LOG_LISTENER_H_
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_LogLevel.h"
12 
13 namespace MyGUI
14 {
15 
17  {
18  public:
19  virtual ~ILogListener() = default;
20 
22  virtual void open() { }
24  virtual void close() { }
26  virtual void flush() { }
28  virtual void log(const std::string& _section, LogLevel _level, const struct tm* _time, const std::string& _message, const char* _file, int _line) { }
29  };
30 
31 } // namespace MyGUI
32 
33 #endif // MYGUI_I_LOG_LISTENER_H_
MyGUI::ILogListener::flush
virtual void flush()
Definition: MyGUI_ILogListener.h:26
MyGUI_Prerequest.h
MyGUI_LogLevel.h
MyGUI::ILogListener::log
virtual void log(const std::string &_section, LogLevel _level, const struct tm *_time, const std::string &_message, const char *_file, int _line)
Definition: MyGUI_ILogListener.h:28
MyGUI::ILogListener
Definition: MyGUI_ILogListener.h:17
MyGUI::ILogListener::open
virtual void open()
Definition: MyGUI_ILogListener.h:22
MYGUI_EXPORT
#define MYGUI_EXPORT
Definition: MyGUI_Platform.h:89
MyGUI::LogLevel
Definition: MyGUI_LogLevel.h:19
MyGUI
Definition: MyGUI_ActionController.h:15
MyGUI::ILogListener::close
virtual void close()
Definition: MyGUI_ILogListener.h:24
MyGUI::ILogListener::~ILogListener
virtual ~ILogListener()=default