diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-03 15:36:01 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-03-03 15:36:01 +0100 |
commit | e1f71b37d632418390b2aac2f89c9d05297a413c (patch) | |
tree | 04202e95474340fbb311688791d7f7d3e1d84276 | |
parent | 78f24b65e4a84c528338cc52e71efa4aa58e656e (diff) |
Removed last remains of "domain" in code
-rw-r--r-- | CMakeLists.txt | 6 | ||||
-rw-r--r-- | src/core/model/Ontology.hpp | 6 | ||||
-rw-r--r-- | src/core/parser/stack/OntologyHandler.hpp | 6 | ||||
-rw-r--r-- | test/core/model/TestOntology.hpp | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aee71cb..e65c64a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -446,9 +446,9 @@ INSTALL(DIRECTORY data/ DESTINATION share/ousia OWNER_EXECUTE GROUP_EXECUTE WORLD_EXECUTE ) -#INSTALL(TARGETS ousia -# RUNTIME DESTINATION bin -#) +INSTALL(TARGETS ousia + RUNTIME DESTINATION bin +) IF(INSTALL_GEDIT_HIGHLIGHTER) INSTALL(FILES contrib/gtksourceview-3.0/language-specs/ousia.lang diff --git a/src/core/model/Ontology.hpp b/src/core/model/Ontology.hpp index d682bdf..82f8948 100644 --- a/src/core/model/Ontology.hpp +++ b/src/core/model/Ontology.hpp @@ -165,8 +165,8 @@ * @author Benjamin Paaßen (bpaassen@techfak.uni-bielefeld.de) */ -#ifndef _OUSIA_MODEL_DOMAIN_HPP_ -#define _OUSIA_MODEL_DOMAIN_HPP_ +#ifndef _OUSIA_MODEL_ONTOLOGY_HPP_ +#define _OUSIA_MODEL_ONTOLOGY_HPP_ #include <core/common/Whitespace.hpp> #include <core/managed/ManagedContainer.hpp> @@ -1470,4 +1470,4 @@ extern const Rtti Ontology; } } -#endif /* _OUSIA_MODEL_DOMAIN_HPP_ */ +#endif /* _OUSIA_MODEL_ONTOLOGY_HPP_ */ diff --git a/src/core/parser/stack/OntologyHandler.hpp b/src/core/parser/stack/OntologyHandler.hpp index 66146bd..fd62f78 100644 --- a/src/core/parser/stack/OntologyHandler.hpp +++ b/src/core/parser/stack/OntologyHandler.hpp @@ -25,8 +25,8 @@ * @author Benjamin Paaßen (bpaassen@techfak.uni-bielefeld.de) */ -#ifndef _OUSIA_DOMAIN_HANDLER_HPP_ -#define _OUSIA_DOMAIN_HANDLER_HPP_ +#ifndef _OUSIA_ONTOLOGY_HANDLER_HPP_ +#define _OUSIA_ONTOLOGY_HANDLER_HPP_ #include <core/common/Variant.hpp> #include <core/model/Node.hpp> @@ -254,4 +254,4 @@ namespace RttiTypes { extern const Rtti OntologyParent; } } -#endif +#endif /* _OUSIA_ONTOLOGY_HANDLER_HPP_ */ diff --git a/test/core/model/TestOntology.hpp b/test/core/model/TestOntology.hpp index c65d6f4..5c4961a 100644 --- a/test/core/model/TestOntology.hpp +++ b/test/core/model/TestOntology.hpp @@ -16,8 +16,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _MODEL_TEST_DOMAIN_HPP_ -#define _MODEL_TEST_DOMAIN_HPP_ +#ifndef _MODEL_TEST_ONTOLOGY_HPP_ +#define _MODEL_TEST_ONTOLOGY_HPP_ #include <core/model/Ontology.hpp> #include <core/model/Typesystem.hpp> @@ -90,4 +90,4 @@ static Rooted<Ontology> constructBookOntology(Manager &mgr, } } -#endif /* _TEST_DOMAIN_HPP_ */
\ No newline at end of file +#endif /* _MODEL_TEST_ONTOLOGY_HPP_ */ |