diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-07 02:31:51 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-07 02:31:51 +0100 |
commit | f6531b10353dacdcbab211a31926c165211cf3b3 (patch) | |
tree | b0c6508bb58b5a34e4b4f8007af5af44fd38aca1 /src/core/common/Variant.hpp | |
parent | 6b3b2f5965e5dfb2000bb9c23f11a83e175741de (diff) |
Unified handling of references to Rtti instances: Now using pointers everywhere
Diffstat (limited to 'src/core/common/Variant.hpp')
-rw-r--r-- | src/core/common/Variant.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/common/Variant.hpp b/src/core/common/Variant.hpp index 76f4506..6eae7e1 100644 --- a/src/core/common/Variant.hpp +++ b/src/core/common/Variant.hpp @@ -929,7 +929,7 @@ public: * to. * @return the value of the variant as array. */ - arrayType toArray(const Rtti &innerType) const; + arrayType toArray(const Rtti *innerType) const; /** * Returns the value of the Variant as map. @@ -946,7 +946,7 @@ public: * to. * @return the value of the variant as map. */ - mapType toMap(const Rtti &innerType) const; + mapType toMap(const Rtti *innerType) const; /** * Returns the value of the Variant as cardinality. @@ -1125,7 +1125,7 @@ public: * or RttiTypes::Function or -- in case an object is stored inside the * variant -- the Rtti of that object. */ - const Rtti &getRtti() const; + const Rtti *getRtti() const; /** * Returns the name of the given variant type as C-style string. |