Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _MITK_LOG_H
00020 #define _MITK_LOG_H
00021
00022 #include <mitkCommon.h>
00023
00024 namespace mitk
00025 {
00026
00030 class MITK_CORE_EXPORT LoggingBackend : public mbilog::AbstractBackend
00031 {
00032 public:
00033
00036 void ProcessMessage(const mbilog::LogMessage& );
00037
00040 static void Register();
00041
00044 static void Unregister();
00045
00048 static void SetLogFile(const char *file);
00049
00053 static void EnableAdditionalConsoleWindow(bool enable);
00054
00057 static void CatchLogFileCommandLineParameter(int &argc,char **argv);
00058
00059 };
00060
00061 }
00062
00063 #endif