* @brief Runs the configured template over a text frame. */
| 216 | * @brief Runs the configured template over a text frame. |
| 217 | */ |
| 218 | QList<QStringList> DataModel::CFrameParser::parseString(const QString& frame) |
| 219 | { |
| 220 | Q_ASSERT(!frame.isEmpty()); |
| 221 | |
| 222 | if (!m_parser) [[unlikely]] |
| 223 | return {}; |
| 224 | |
| 225 | return m_parser->parseText(frame); |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * @brief Runs the configured template over a UTF-8 text frame without a QString round-trip. |
no test coverage detected