diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-01-12 19:39:57 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-01-12 19:39:57 +0100 |
commit | 55f943ba1b31542157b984b5955b91261c280f46 (patch) | |
tree | c0fe674adae1c19d5d4d46efd335cca35171c753 /test | |
parent | 9d89642e2bc33b8630e92d8b5a0e6d4116040897 (diff) |
hopefully repaired multiple inheritance chaos.
Diffstat (limited to 'test')
-rw-r--r-- | test/core/model/TestDocumentBuilder.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/model/TestDocumentBuilder.hpp b/test/core/model/TestDocumentBuilder.hpp index a09b081..081e934 100644 --- a/test/core/model/TestDocumentBuilder.hpp +++ b/test/core/model/TestDocumentBuilder.hpp @@ -135,7 +135,7 @@ Rooted<StructuredEntity> buildRootStructuredEntity(Handle<Document> document, * contain a StructuredClass with the given name. */ Rooted<StructuredEntity> buildStructuredEntity( - Handle<Document> document, Logger &logger, Handle<DocumentEntity> parent, + Handle<Document> document, Logger &logger, Handle<StructuredEntity> parent, Path path, const std::string &fieldName = "", Variant attributes = {}, std::string name = "") { @@ -191,7 +191,7 @@ Rooted<StructuredEntity> buildStructuredEntity( * input handle was empty. */ Rooted<DocumentPrimitive> buildPrimitiveEntity( - Logger &logger, Handle<DocumentEntity> parent, Variant content = {}, + Logger &logger, Handle<StructuredEntity> parent, Variant content = {}, const std::string &fieldName = "") { // If the input handles are not set, we can not build the entity. @@ -228,7 +228,7 @@ Rooted<DocumentPrimitive> buildPrimitiveEntity( * input handle was empty. */ Rooted<AnnotationEntity::Anchor> buildAnchor(Logger &logger, - Handle<DocumentEntity> parent, + Handle<StructuredEntity> parent, std::string id, const std::string &fieldName = "") { |