| 55 | } |
| 56 | |
| 57 | void HostGroupsTable::FetchRows(const AddRowFunction& addRowFn) |
| 58 | { |
| 59 | for (const HostGroup::Ptr& hg : ConfigType::GetObjectsByType<HostGroup>()) { |
| 60 | if (!addRowFn(hg, LivestatusGroupByNone, Empty)) |
| 61 | return; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | Value HostGroupsTable::NameAccessor(const Value& row) |
| 66 | { |
nothing calls this directly
no outgoing calls
no test coverage detected