| 84 | } |
| 85 | |
| 86 | bool PropertyAggregator::canAddProperty() const |
| 87 | { |
| 88 | auto count = std::count_if(m_propertyAdaptors.constBegin(), m_propertyAdaptors.constEnd(), |
| 89 | [](PropertyAdaptor *pa) { |
| 90 | return pa->canAddProperty(); |
| 91 | }); |
| 92 | return count == 1; |
| 93 | } |
| 94 | |
| 95 | void PropertyAggregator::addProperty(const PropertyData &data) |
| 96 | { |
no test coverage detected