Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkIToFDeviceFactory.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,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 #ifndef __mitkIToFDeviceFactory_h
17 #define __mitkIToFDeviceFactory_h
18 
19 #include "mitkCameraIntrinsics.h"
20 #include "mitkToFCameraDevice.h"
21 #include <MitkToFHardwareExports.h>
22 //for microservices
23 #include <mitkServiceInterface.h>
24 
25 namespace mitk
26 {
33  struct MITKTOFHARDWARE_EXPORT IToFDeviceFactory {
34  virtual ~IToFDeviceFactory();
35 
40  virtual std::string GetFactoryName() = 0;
41 
48  virtual std::string GetCurrentDeviceName() = 0;
49 
50  virtual std::string GetDeviceNamePrefix() = 0;
51 
57  virtual ToFCameraDevice::Pointer CreateToFCameraDevice() = 0;
58 
59  };
60 }
61 
66 MITK_DECLARE_SERVICE_INTERFACE(mitk::IToFDeviceFactory, "org.mitk.services.IToFDeviceFactory")
67 #endif
itk::SmartPointer< Self > Pointer
DataCollection - Class to facilitate loading/accessing structured data.
MITK_DECLARE_SERVICE_INTERFACE(mitk::ISimulationService,"org.mitk.ISimulationService")
This is the base of class for all ToFDeviceFactories.