| 520 | } |
| 521 | |
| 522 | Component * PackProfile::getComponent(const QString &id) |
| 523 | { |
| 524 | auto iter = d->componentIndex.find(id); |
| 525 | if (iter == d->componentIndex.end()) |
| 526 | { |
| 527 | return nullptr; |
| 528 | } |
| 529 | return (*iter).get(); |
| 530 | } |
| 531 | |
| 532 | Component * PackProfile::getComponent(int index) |
| 533 | { |
no test coverage detected