| 486 | } |
| 487 | |
| 488 | ComponentPtr PackProfile::getComponent(const QString& id) |
| 489 | { |
| 490 | auto iter = d->componentIndex.find(id); |
| 491 | if (iter == d->componentIndex.end()) { |
| 492 | return nullptr; |
| 493 | } |
| 494 | return (*iter); |
| 495 | } |
| 496 | |
| 497 | ComponentPtr PackProfile::getComponent(size_t index) |
| 498 | { |
no test coverage detected