| 50 | } |
| 51 | |
| 52 | void CommentsTable::FetchRows(const AddRowFunction& addRowFn) |
| 53 | { |
| 54 | for (const Comment::Ptr& comment : ConfigType::GetObjectsByType<Comment>()) { |
| 55 | if (!addRowFn(comment, LivestatusGroupByNone, Empty)) |
| 56 | return; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | Object::Ptr CommentsTable::HostAccessor(const Value& row, const Column::ObjectAccessor&) |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected