| 14 | #include <assert.h> |
| 15 | |
| 16 | Component::Component(PackProfile * parent, const QString& uid) |
| 17 | { |
| 18 | assert(parent); |
| 19 | m_parent = parent; |
| 20 | |
| 21 | m_uid = uid; |
| 22 | } |
| 23 | |
| 24 | Component::Component(PackProfile * parent, std::shared_ptr<Meta::Version> version) |
| 25 | { |