| 41 | } |
| 42 | |
| 43 | void EndpointsTable::FetchRows(const AddRowFunction& addRowFn) |
| 44 | { |
| 45 | for (const Endpoint::Ptr& endpoint : ConfigType::GetObjectsByType<Endpoint>()) { |
| 46 | if (!addRowFn(endpoint, LivestatusGroupByNone, Empty)) |
| 47 | return; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | Value EndpointsTable::NameAccessor(const Value& row) |
| 52 | { |
nothing calls this directly
no outgoing calls
no test coverage detected