* @brief Returns true if any of the literals matches the lowercase column name. */
| 79 | * @brief Returns true if any of the literals matches the lowercase column name. |
| 80 | */ |
| 81 | [[nodiscard]] static bool matchAny(const QString& col, std::initializer_list<QLatin1String> options) |
| 82 | { |
| 83 | for (const auto& opt : options) |
| 84 | if (col == opt) |
| 85 | return true; |
| 86 | |
| 87 | return false; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * @brief Maps a single header cell to its column-map slot. |
no outgoing calls
no test coverage detected