Removed legacy functions

This commit is contained in:
Benjamin Höglinger-Stelzer
2019-05-28 18:02:41 +02:00
parent 0875d8ce38
commit 435fa9750b
2 changed files with 0 additions and 19 deletions

View File

@@ -83,18 +83,3 @@ void XusbNotificationRequest::post(boost::asio::io_service::strand strand) const
payload_.LedNumber
));
}
UCHAR XusbNotificationRequest::get_led_number() const
{
return payload_.LedNumber;
}
UCHAR XusbNotificationRequest::get_large_motor() const
{
return payload_.LargeMotor;
}
UCHAR XusbNotificationRequest::get_small_motor() const
{
return payload_.SmallMotor;
}

View File

@@ -41,8 +41,4 @@ public:
XusbNotificationRequest(PVIGEM_CLIENT client, PVIGEM_TARGET target, HANDLE notification);
bool request_async();
void post(boost::asio::io_service::strand strand) const;
UCHAR get_led_number() const;
UCHAR get_large_motor() const;
UCHAR get_small_motor() const;
};