| 28 | namespace ark { |
| 29 | |
| 30 | bool Sample1Module::Init() |
| 31 | { |
| 32 | m_pTimerModule = FindModule<AFITimerModule>(); |
| 33 | m_pLogModule = FindModule<AFILogModule>(); |
| 34 | m_pGUIDModule = FindModule<AFIGUIDModule>(); |
| 35 | |
| 36 | ARK_LOG_INFO("{}, init", GET_CLASS_NAME(Sample1Module)); |
| 37 | |
| 38 | m_pTimerModule->AddSingleTimer(AFGUID(100), std::chrono::seconds(10), 5, this, &Sample1Module::TimerTest); |
| 39 | |
| 40 | return true; |
| 41 | } |
| 42 | |
| 43 | void TestBasicData() |
| 44 | { |
nothing calls this directly
no test coverage detected