Skip to content

Commit

Permalink
[TEMPORARY] Fix compilation errors. MUST BE REVIEWDc
Browse files Browse the repository at this point in the history
  • Loading branch information
aleemont1 committed Nov 29, 2023
1 parent ae7abf3 commit 00891bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smart_bridge/src/components/api/Button.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 00891bd

Please sign in to comment.