* @brief Resolves a (table, register) pair to a reusable handle for the fast read/write path. */
| 637 | * @brief Resolves a (table, register) pair to a reusable handle for the fast read/write path. |
| 638 | */ |
| 639 | qint64 DataModel::TableApiBridge::tableHandle(const QString& t, const QString& r) |
| 640 | { |
| 641 | Q_ASSERT(store); |
| 642 | return store->handleOf(t, r); |
| 643 | } |
| 644 | |
| 645 | /** |
| 646 | * @brief Resolves many register names against one table in a single call; -1 for unknown ones. |
no test coverage detected