| 5160 | } |
| 5161 | |
| 5162 | XmpKey::XmpKey(const std::string& key) : p_(std::make_unique<Impl>()) { |
| 5163 | p_->decomposeKey(key); |
| 5164 | } |
| 5165 | |
| 5166 | XmpKey::XmpKey(const std::string& prefix, const std::string& property) : p_(std::make_unique<Impl>(prefix, property)) { |
| 5167 | } |
nothing calls this directly
no test coverage detected