From a30e627ffccf36384689295ce54af32e38ef5ef8 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 18 Jan 2015 18:22:14 +0100 Subject: Droped Rtti class, using RttiType instead --- src/core/model/Node.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/core/model/Node.cpp') diff --git a/src/core/model/Node.cpp b/src/core/model/Node.cpp index bd023e1..be13d42 100644 --- a/src/core/model/Node.cpp +++ b/src/core/model/Node.cpp @@ -21,8 +21,7 @@ #include #include -#include -#include +#include #include #include "Node.hpp" @@ -438,8 +437,8 @@ bool Node::validate(Logger &logger) const /* RTTI type registrations */ namespace RttiTypes { -const Rtti Node = - TypedRttiBuilder("Node") +const RttiType Node = + RttiBuilder("Node") .property("name", {RttiTypes::String, {[](const ousia::Node *obj) { return Variant::fromString(obj->getName()); -- cgit v1.2.3