00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "inputthreadprivate.h"
00021
00022 using namespace GluonInput;
00023
00024 InputThreadPrivate::InputThreadPrivate()
00025 {
00026 }
00027
00028 InputThreadPrivate::InputThreadPrivate( InputThreadPrivate& other )
00029 : QSharedData( other )
00030 , vendor( other.vendor )
00031 , product( other.product )
00032 , version( other.version )
00033 , bustype( other.bustype )
00034 , deviceName( other.deviceName )
00035 , msgError( other.msgError )
00036 , error( other.error )
00037 , deviceType( other.deviceType )
00038 , buttonCapabilities( other.buttonCapabilities )
00039 , relAxisCapabilities( other.relAxisCapabilities )
00040 , absAxisCapabilities( other.absAxisCapabilities )
00041 , absAxisInfos( other.absAxisInfos )
00042 , xAbsUsage( other.xAbsUsage )
00043 , yAbsUsage( other.yAbsUsage )
00044 , zAbsUsage( other.zAbsUsage )
00045 , device( other.device )
00046 {
00047 }