| 97 | } |
| 98 | |
| 99 | std::vector<String> Table::GetColumnNames() const |
| 100 | { |
| 101 | std::vector<String> names; |
| 102 | |
| 103 | for (const auto& kv : m_Columns) { |
| 104 | names.push_back(kv.first); |
| 105 | } |
| 106 | |
| 107 | return names; |
| 108 | } |
| 109 | |
| 110 | std::vector<LivestatusRowValue> Table::FilterRows(const Filter::Ptr& filter, int limit) |
| 111 | { |
no test coverage detected