From a7019614896fdd3e29b9a28f6a8cfd2c1b365983 Mon Sep 17 00:00:00 2001 From: Benjamin Paassen Date: Sun, 1 Mar 2015 20:47:25 +0100 Subject: Renamed domain to ontology. --- test/core/model/TestDomain.hpp | 93 ------------------------------------------ 1 file changed, 93 deletions(-) delete mode 100644 test/core/model/TestDomain.hpp (limited to 'test/core/model/TestDomain.hpp') diff --git a/test/core/model/TestDomain.hpp b/test/core/model/TestDomain.hpp deleted file mode 100644 index 779ef03..0000000 --- a/test/core/model/TestDomain.hpp +++ /dev/null @@ -1,93 +0,0 @@ -/* - Ousía - Copyright (C) 2014, 2015 Benjamin Paaßen, Andreas Stöckel - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef _MODEL_TEST_DOMAIN_HPP_ -#define _MODEL_TEST_DOMAIN_HPP_ - -#include -#include - -namespace ousia { -/** - * This constructs the "book" domain for test purposes. The structure of the - * domain is fairly simple and can be seen from the construction itself. - */ -static Rooted constructBookDomain(Manager &mgr, - Handle sys, - Logger &logger) -{ - // Start with the Domain itself. - Rooted domain{new Domain(mgr, sys, "book")}; - // Set up the cardinalities we'll need. - Cardinality single; - single.merge({1}); - - // Set up the "book" node. - Rooted book{new StructuredClass( - mgr, "book", domain, single, {nullptr}, false, true)}; - - // The structure field of it. - Rooted book_field = - book->createFieldDescriptor(logger).first; - - // From there on the "section". - Rooted section{ - new StructuredClass(mgr, "section", domain, Cardinality::any())}; - book_field->addChild(section); - - // And the field of it. - Rooted section_field = - section->createFieldDescriptor(logger).first; - - // We also add the "paragraph", which is transparent. - Rooted paragraph{new StructuredClass( - mgr, "paragraph", domain, Cardinality::any(), {nullptr}, true)}; - section_field->addChild(paragraph); - book_field->addChild(paragraph); - - // And the field of it. - Rooted paragraph_field = - paragraph->createFieldDescriptor(logger).first; - - // We append "subsection" to section. - Rooted subsection{ - new StructuredClass(mgr, "subsection", domain, Cardinality::any())}; - section_field->addChild(subsection); - - // And the field of it. - Rooted subsection_field = - subsection->createFieldDescriptor(logger).first; - - // and we add the paragraph to subsections fields - subsection_field->addChild(paragraph); - - // Finally we add the "text" node, which is transparent as well. - Rooted text{new StructuredClass( - mgr, "text", domain, Cardinality::any(), {nullptr}, true)}; - paragraph_field->addChild(text); - - // ... and has a primitive field. - Rooted text_field = - text->createPrimitiveFieldDescriptor(sys->getStringType(), logger) - .first; - - return domain; -} -} - -#endif /* _TEST_DOMAIN_HPP_ */ \ No newline at end of file -- cgit v1.2.3