summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-03 16:17:11 +0100
committerAndreas Stöckel <andreas@somweyr.de>2015-01-03 16:17:11 +0100
commit603dedfa2b3704730fa4db8e7f84702b26da9ae6 (patch)
treed2e03ce8bfc90c54aa7e6ee560aeafc3c5cabdb0 /src/core
parent17e79d4535ef4dba7346dedb2a8341fc4421fa23 (diff)
Improved contains functionality (now includes the parent types of each aggregated type and the aggregated types of each parent)
Diffstat (limited to 'src/core')
-rw-r--r--src/core/common/Rtti.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/common/Rtti.cpp b/src/core/common/Rtti.cpp
index 0443a8d..5de2b4c 100644
--- a/src/core/common/Rtti.cpp
+++ b/src/core/common/Rtti.cpp
@@ -53,13 +53,19 @@ void RttiBase::initialize() const
if (!initialized) {
initialized = true;
- // Insert the parent types of the parent types
+ // Insert the parent types of the parent types and the aggregated types
+ // if the parents
{
std::unordered_set<const RttiBase *> origParents = parents;
for (const RttiBase *parent : origParents) {
parent->initialize();
parents.insert(parent->parents.begin(), parent->parents.end());
}
+ for (const RttiBase *parent : parents) {
+ parent->initialize();
+ aggregatedTypes.insert(parent->aggregatedTypes.begin(),
+ parent->aggregatedTypes.end());
+ }
parents.insert(this);
}
@@ -71,6 +77,8 @@ void RttiBase::initialize() const
aggregatedType->initialize();
aggregatedTypes.insert(aggregatedType->aggregatedTypes.begin(),
aggregatedType->aggregatedTypes.end());
+ aggregatedTypes.insert(aggregatedType->parents.begin(),
+ aggregatedType->parents.end());
}
}
}