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 #ifndef MITKINTERACTIONDEBUGGER_H
00019 #define MITKINTERACTIONDEBUGGER_H
00020
00021 #include <itkObject.h>
00022 #include "MitkExtExports.h"
00023 #include "mitkCommon.h"
00024
00025
00026 namespace mitk{
00027
00034 class MitkExt_EXPORT InteractionDebugger : public itk::Object
00035 {
00036 public:
00041 static void Set(const char* sender, const char* text);
00042 static void Activate();
00043 static void Deactivate();
00044
00045 protected:
00046 InteractionDebugger();
00047 ~InteractionDebugger();
00048
00049 private:
00050 static const char* m_CurrentSender;
00051 static bool m_Active;
00052 };
00053
00054 }
00055
00056 #endif
00057
00058