Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkInputDeviceDescriptor.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef MITKINPUTDEVICEDESCRIPTOR_H_
14 #define MITKINPUTDEVICEDESCRIPTOR_H_
15 
17 
18 #include <string>
19 
21 #include "mitkIInputDevice.h"
22 
23 namespace mitk
24 {
32  {
33 
34  public:
35 
43 
48 
53 
57  std::string GetDescription() const;
58 
62  std::string GetID() const;
63 
67  std::string GetName() const;
68 
72  bool operator==(const Object* object) const;
73 
74  private:
75 
76  // IConfigurationElements are used to access xml files (here: plugin.xml)
77  berry::IConfigurationElement::Pointer m_InputDeviceExtensionPoint;
78  mitk::IInputDevice::Pointer m_InputDevice;
79 
80  }; // end class
81 } // end namespace
82 
83 #endif /*MITKINPUTDEVICEDESCRIPTOR_H_*/
std::string GetName() const
DataCollection - Class to facilitate loading/accessing structured data.
InputDeviceDescriptor(berry::IConfigurationElement::Pointer inputDeviceExtensionPoint)
bool operator==(const Object *object) const
mitk::IInputDevice::Pointer CreateInputDevice()
std::string GetID() const
std::string GetDescription() const