diff --git a/src/XusbNotificationRequest.cpp b/src/XusbNotificationRequest.cpp index a0b75b1..1a01cc9 100644 --- a/src/XusbNotificationRequest.cpp +++ b/src/XusbNotificationRequest.cpp @@ -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; -} diff --git a/src/XusbNotificationRequest.h b/src/XusbNotificationRequest.h index 84ec8c2..624f9d2 100644 --- a/src/XusbNotificationRequest.h +++ b/src/XusbNotificationRequest.h @@ -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; };