00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef OSDL_INPUT_DEVICE_H_
00028 #define OSDL_INPUT_DEVICE_H_
00029
00030
00031 #include "OSDLEvents.h"
00032 #include "OSDLEventsCommon.h"
00033
00034
00035 #include "Ceylan.h"
00036
00037
00038 #include <string>
00039
00040
00041
00042
00043 namespace OSDL
00044 {
00045
00046
00047
00048 namespace MVC
00049 {
00050
00051
00052 class Controller ;
00053
00054 }
00055
00056
00057
00058 namespace Events
00059 {
00060
00061
00062
00084 class OSDL_DLL InputDevice : public Ceylan::InputDevice
00085 {
00086
00087
00088 public:
00089
00090
00091
00097 InputDevice() ;
00098
00099
00100
00106 explicit InputDevice(
00107 OSDL::MVC::Controller & actualController ) ;
00108
00109
00110
00112 virtual ~InputDevice() throw() ;
00113
00114
00115
00127 virtual OSDL::MVC::Controller & getActualController() const ;
00128
00129
00130
00142 virtual const std::string toString(
00143 Ceylan::VerbosityLevels level = Ceylan::high ) const ;
00144
00145
00146
00147
00148 private:
00149
00150
00151
00160 explicit InputDevice( const InputDevice & source ) ;
00161
00162
00163
00172 InputDevice & operator = ( const InputDevice & source ) ;
00173
00174
00175 } ;
00176
00177
00178 }
00179
00180 }
00181
00182
00183
00184 #endif // OSDL_INPUT_DEVICE_H_
00185