From 00891bd01d578e5d386049267bac32f567e49375 Mon Sep 17 00:00:00 2001 From: Alessandro Monticelli Date: Wed, 29 Nov 2023 19:55:28 +0100 Subject: [PATCH] [TEMPORARY] Fix compilation errors. MUST BE REVIEWDc --- smart_bridge/src/components/api/Button.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smart_bridge/src/components/api/Button.h b/smart_bridge/src/components/api/Button.h index 6ab5033..d9929dc 100644 --- a/smart_bridge/src/components/api/Button.h +++ b/smart_bridge/src/components/api/Button.h @@ -27,19 +27,19 @@ class Button * * @return true if the button is pressed, false otherwise. */ - virtual bool checkButtonPressStatus() = 0; + bool checkButtonPressStatus(); /** * @brief Check if the button is released. * * @return true if the button is released, false otherwise. */ - virtual bool checkButtonReleaseStatus() = 0; + bool checkButtonReleaseStatus(); /** * @brief Synchronizes the button state with the actual physical button. */ - virtual void updateButtonState(); + void updateButtonState(); /** * @brief Retrieves the last time the button state was synchronized.