| 486 | } |
| 487 | |
| 488 | void HnTaskManager::EnableTask(TaskUID UID, bool Enable) |
| 489 | { |
| 490 | auto it = m_TaskInfo.find(UID); |
| 491 | if (it == m_TaskInfo.end()) |
| 492 | return; |
| 493 | |
| 494 | it->second.Enabled = Enable; |
| 495 | } |
| 496 | |
| 497 | bool HnTaskManager::IsTaskEnabled(TaskUID UID) const |
| 498 | { |
nothing calls this directly
no outgoing calls
no test coverage detected