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 #include "mitkEventDescription.h"
00020
00021 mitk::EventDescription::EventDescription(int type, int button, int buttonState, int key, std::string name, int id)
00022 : Event(NULL, type, button, buttonState, key), m_Name(name), m_Id(id)
00023 {}
00024
00025 std::string mitk::EventDescription::GetName() const
00026 {
00027 return m_Name;
00028 }
00029
00030 int mitk::EventDescription::GetId() const
00031 {
00032 return m_Id;
00033 }
00034