[test] Fixed tests compilation

This commit is contained in:
Laury
2022-06-25 19:43:58 +02:00
parent 0b2a581177
commit 4893b73917
8 changed files with 36 additions and 4 deletions

10
apps/timer_manager.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <escher/timer_manager.h>
#include <apps/apps_container.h>
void TimerManager::AddTimer(Timer * timer) {
AppsContainer::sharedAppsContainer()->addTimer(timer);
}
void TimerManager::RemoveTimer(Timer * timer) {
AppsContainer::sharedAppsContainer()->removeTimer(timer);
}