diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 18:41:30 +0100 |
commit | 66382c62af1be515deff66d51dba7f27e5fe4937 (patch) | |
tree | cdd661a560ef1f766889d661d8c7561d18bfbabb /test/core/model | |
parent | 7d788f2dce18c3ba6f11f7f032d35fef2e5fa9d4 (diff) |
Renamed RttiType to Rtti
Diffstat (limited to 'test/core/model')
-rw-r--r-- | test/core/model/DomainTest.cpp | 2 | ||||
-rw-r--r-- | test/core/model/NodeTest.cpp | 2 | ||||
-rw-r--r-- | test/core/model/TestDocumentBuilder.hpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/core/model/DomainTest.cpp b/test/core/model/DomainTest.cpp index 5909841..62a0543 100644 --- a/test/core/model/DomainTest.cpp +++ b/test/core/model/DomainTest.cpp @@ -28,7 +28,7 @@ namespace ousia { namespace model { -void assert_path(const ResolutionResult &res, const RttiType &expected_type, +void assert_path(const ResolutionResult &res, const Rtti &expected_type, std::vector<std::string> expected_path) { // Check class/type diff --git a/test/core/model/NodeTest.cpp b/test/core/model/NodeTest.cpp index aa6ef59..a9a699d 100644 --- a/test/core/model/NodeTest.cpp +++ b/test/core/model/NodeTest.cpp @@ -60,7 +60,7 @@ public: }; namespace RttiTypes { -const RttiType TestNode = RttiBuilder<ousia::TestNode>("TestNode") +const Rtti TestNode = RttiBuilder<ousia::TestNode>("TestNode") .parent(&RttiTypes::Node) .composedOf(&TestNode); } diff --git a/test/core/model/TestDocumentBuilder.hpp b/test/core/model/TestDocumentBuilder.hpp index dc0479d..63d60eb 100644 --- a/test/core/model/TestDocumentBuilder.hpp +++ b/test/core/model/TestDocumentBuilder.hpp @@ -46,7 +46,7 @@ static std::string getPathString(const Path &path) static Rooted<Descriptor> resolveDescriptor(Handle<Document> doc, Logger &logger, const Path &path, - const RttiType &type) + const Rtti &type) { // use the actual resolve method. std::vector<ResolutionResult> resolved = doc->resolve(path, type); |