| 46 | } |
| 47 | |
| 48 | void ServiceGroupsTable::FetchRows(const AddRowFunction& addRowFn) |
| 49 | { |
| 50 | for (const ServiceGroup::Ptr& sg : ConfigType::GetObjectsByType<ServiceGroup>()) { |
| 51 | if (!addRowFn(sg, LivestatusGroupByNone, Empty)) |
| 52 | return; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | Value ServiceGroupsTable::NameAccessor(const Value& row) |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected