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.