diff --git a/src/Countimer.cpp b/src/Countimer.cpp index dbf94d6..c5ae5a8 100644 --- a/src/Countimer.cpp +++ b/src/Countimer.cpp @@ -87,6 +87,11 @@ bool Countimer::isStopped() return _isStopped; } +bool Countimer::isCounterRunning() +{ + return !_isStopped; +} + void Countimer::start() { _isStopped = false;