summaryrefslogtreecommitdiff
path: root/src/core/common/Variant.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-11 13:23:26 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-11 13:23:26 +0100
commit7df5f30494b7da283164717dea9098c8d9dca77a (patch)
tree8d967f3c47fc905b08ee7039b7549253f969703f /src/core/common/Variant.hpp
parent3d6d42333a49e0a33a8cc4e1b8f890905a435a83 (diff)
Renamed RttiBase to RttiType
Diffstat (limited to 'src/core/common/Variant.hpp')
-rw-r--r--src/core/common/Variant.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/common/Variant.hpp b/src/core/common/Variant.hpp
index 9f6ec7a..98ee49b 100644
--- a/src/core/common/Variant.hpp
+++ b/src/core/common/Variant.hpp
@@ -48,7 +48,7 @@ namespace ousia {
// Forward declarations
class Function;
-class RttiBase;
+class RttiType;
/**
* Enum containing the possible types a variant may have.
@@ -856,6 +856,13 @@ public:
}
/**
+ * Returns the current Rtti type descriptor of the Variant.
+ *
+ * @return the Rtti type descriptor. Either one of RttiTypes::Int,
+ * RttiTypes::Bool, RttiTypes::Double, RttiTypes::
+ */
+
+ /**
* Returns the name of the given variant type as C-style string.
*/
static const char *getTypeName(VariantType type);