| 315 | } |
| 316 | |
| 317 | bool CatalogModel::isScalarKey(const QString& key) const { |
| 318 | const auto it = impl_->items.find(key); |
| 319 | return it != impl_->items.end() && isScalarField(it->second); |
| 320 | } |
| 321 | |
| 322 | bool CatalogModel::isStringKey(const QString& key) const { |
| 323 | const auto it = impl_->items.find(key); |