From 435fa9750be6ef8b8216a3a6bed67a117537cef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B6glinger-Stelzer?= Date: Tue, 28 May 2019 18:02:41 +0200 Subject: [PATCH] Removed legacy functions --- src/XusbNotificationRequest.cpp | 15 --------------- src/XusbNotificationRequest.h | 4 ---- 2 files changed, 19 deletions(-) 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; };