Fix Timer Bug

This commit is contained in:
2019-04-15 11:17:36 +02:00
parent 7539890b5c
commit 3357229b5a
2 changed files with 8 additions and 2 deletions
+5
View File
@@ -42,6 +42,11 @@ bool Timer::operator==(const std::string& identifier) const
return m_identifier == identifier;
}
bool Timer::operator==(bool running) const
{
return IsRunning() == running;
}
std::string Timer::Identifier() const
{
return m_identifier;