Added isRunning to timer

This commit is contained in:
CarlWachter 2023-09-18 20:44:26 +02:00
parent 4dc625f6e9
commit 1498bcc449

View File

@ -27,6 +27,13 @@ namespace sta
*
*/
virtual void stop() = 0;
/**
* @brief Check if timer is running.
*
* @return true if timer is running
* @return false if timer is not running
*/
virtual bool isRunning() = 0;
};
} // namespace sta