00001 /*========================================================================= 00002 00003 Program: Medical Imaging & Interaction Toolkit 00004 Language: C++ 00005 Date: $Date: 2010-03-31 16:40:27 +0200 (Mi, 31 Mrz 2010) $ 00006 Version: $Revision: 21975 $ 00007 00008 Copyright (c) German Cancer Research Center, Division of Medical and 00009 Biological Informatics. All rights reserved. 00010 See MITKCopyright.txt or https://www.mitk.org/copyright.html for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 00018 #ifndef MITK_WIIMOTEACTIVATOR_H_ 00019 #define MITK_WIIMOTEACTIVATOR_H_ 00020 00021 #include "mitkIInputDevice.h" 00022 00023 //#include "mitkWiiMoteVtkCameraController.h" 00024 00025 namespace mitk 00026 { 00027 class WiiMoteActivator : public IInputDevice 00028 { 00029 public: 00030 00031 WiiMoteActivator(); 00032 ~WiiMoteActivator(); 00033 00037 bool RegisterInputDevice(); 00038 00042 bool UnRegisterInputDevice(); 00043 00044 protected: 00045 00046 private: 00047 00048 bool m_IsRegistered; 00049 00050 //mitk::WiiMoteVtkCameraController::Pointer m_Controller; 00051 00052 }; // end class WiiMoteActivator 00053 } // end namespace mitk 00054 00055 #endif // MITK_WIIMOTEACTIVATOR_H_