2 * Copyright 2005-2008 Stephan Aßmus <superstippi@gmx.de>. All rights reserved.
3 * Distributed under the terms of the MIT license.
8 #include "DeviceReader.h"
10 #include "PointingDevice.h"
13 PointingDevice::PointingDevice(MasterServerDevice
* parent
,
22 PointingDevice::~PointingDevice()
29 PointingDevice::InitCheck()
31 return fParent
&& fReader
? fReader
->InitCheck() : B_NO_INIT
;
36 PointingDevice::SetActive(bool active
)
43 PointingDevice::IsActive() const
50 PointingDevice::DevicePath() const
53 return fReader
->DevicePath();
60 PointingDevice::DisablePS2() const
67 PointingDevice::VendorID() const
70 return fReader
->VendorID();
76 PointingDevice::ProductID() const
79 return fReader
->ProductID();