Fix Timer Variadic Template Implementation

This commit is contained in:
2019-02-09 13:31:22 +01:00
parent b623ba5003
commit fcd4b337c5
5 changed files with 114 additions and 16 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ Device::~Device()
void Device::Start()
{
m_timer.Start(10000, static_cast<std::function<void()>>(std::bind(&Device::UpdatePresentDevices, this)));
m_timer.StartContinuous(10000, static_cast<std::function<void()>>(std::bind(&Device::UpdatePresentDevices, this)));
}
void Device::Stop()