| 92 | } |
| 93 | |
| 94 | bool InputAgent::parse(const json::value& config) |
| 95 | { |
| 96 | bool ret = false; |
| 97 | for (auto& unit : units_ | std::views::values) { |
| 98 | ret |= unit->parse(config); |
| 99 | } |
| 100 | return ret; |
| 101 | } |
| 102 | |
| 103 | bool InputAgent::init() |
| 104 | { |
no outgoing calls
no test coverage detected