diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-02-21 23:30:19 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-02-21 23:30:19 +0100 |
commit | 280b1250c0a038c2cf09fae3848ed0adefecc430 (patch) | |
tree | 8c12353095fccbe9cb890b9181e2adcff4476ffc | |
parent | d491437f8e3b33c071d24fcf2c6ae1956ad1552d (diff) | |
download | sink-280b1250c0a038c2cf09fae3848ed0adefecc430.tar.gz sink-280b1250c0a038c2cf09fae3848ed0adefecc430.zip |
Print aggregate ids
-rw-r--r-- | common/domain/applicationdomaintype.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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 | |||
44 | }(); | 44 | }(); |
45 | std::sort(properties.begin(), properties.end()); | 45 | std::sort(properties.begin(), properties.end()); |
46 | d << " " << "Id: " << "\t" << type.identifier() << "\n"; | 46 | d << " " << "Id: " << "\t" << type.identifier() << "\n"; |
47 | if (type.isAggregate()) { | ||
48 | d << " " << "AggregateIds: " << "\t" << type.aggregatedIds() << "\n"; | ||
49 | } | ||
47 | d << " " << "Resource: " << "\t" << type.resourceInstanceIdentifier() << "\n"; | 50 | d << " " << "Resource: " << "\t" << type.resourceInstanceIdentifier() << "\n"; |
48 | for (const auto &property : properties) { | 51 | for (const auto &property : properties) { |
49 | d << " " << property << "\t" << type.getProperty(property) << "\n"; | 52 | d << " " << property << "\t" << type.getProperty(property) << "\n"; |