From 280b1250c0a038c2cf09fae3848ed0adefecc430 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 21 Feb 2018 23:30:19 +0100 Subject: Print aggregate ids --- common/domain/applicationdomaintype.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/domain/applicationdomaintype.cpp b/common/domain/applicationdomaintype.cpp index c315e33..07dab3b 100644 --- a/common/domain/applicationdomaintype.cpp +++ b/common/domain/applicationdomaintype.cpp @@ -44,6 +44,9 @@ QDebug Sink::ApplicationDomain::operator<< (QDebug d, const Sink::ApplicationDom }(); std::sort(properties.begin(), properties.end()); d << " " << "Id: " << "\t" << type.identifier() << "\n"; + if (type.isAggregate()) { + d << " " << "AggregateIds: " << "\t" << type.aggregatedIds() << "\n"; + } d << " " << "Resource: " << "\t" << type.resourceInstanceIdentifier() << "\n"; for (const auto &property : properties) { d << " " << property << "\t" << type.getProperty(property) << "\n"; -- cgit v1.2.3