summaryrefslogtreecommitdiff
path: root/src/model/types
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/types')
-rw-r--r--src/model/types/Type.cpp29
-rw-r--r--src/model/types/Type.hpp33
-rw-r--r--src/model/types/Value.cpp29
-rw-r--r--src/model/types/Value.hpp31
4 files changed, 122 insertions, 0 deletions
diff --git a/src/model/types/Type.cpp b/src/model/types/Type.cpp
new file mode 100644
index 0000000..d219b61
--- /dev/null
+++ b/src/model/types/Type.cpp
@@ -0,0 +1,29 @@
+/*
+ Ousía
+ Copyright (C) 2014 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 <http://www.gnu.org/licenses/>.
+*/
+
+#include <model/GraphNode.hpp>
+#include <model/types/Type.hpp>
+
+namespace ousia {
+namespace types {
+
+
+//TODO: THIS IS A DUMMY CLASS DECLARATION
+
+}
+}
diff --git a/src/model/types/Type.hpp b/src/model/types/Type.hpp
new file mode 100644
index 0000000..155f898
--- /dev/null
+++ b/src/model/types/Type.hpp
@@ -0,0 +1,33 @@
+/*
+ Ousía
+ Copyright (C) 2014 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 <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef _TYPE_HPP_
+#define _TYPE_HPP_
+
+#include <model/GraphNode.hpp>
+
+namespace ousia {
+namespace types {
+
+class Type : public GraphNode {
+
+//TODO: THIS IS A DUMMY CLASS DECLARATION
+};
+}
+}
+#endif /* _TYPE_HPP_ */
diff --git a/src/model/types/Value.cpp b/src/model/types/Value.cpp
new file mode 100644
index 0000000..73d233a
--- /dev/null
+++ b/src/model/types/Value.cpp
@@ -0,0 +1,29 @@
+/*
+ Ousía
+ Copyright (C) 2014 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 <http://www.gnu.org/licenses/>.
+*/
+
+#include <model/GraphNode.hpp>
+#include <model/types/Value.hpp>
+
+namespace ousia {
+namespace types {
+
+
+//TODO: THIS IS A DUMMY CLASS DECLARATION
+
+}
+}
diff --git a/src/model/types/Value.hpp b/src/model/types/Value.hpp
new file mode 100644
index 0000000..3076dd2
--- /dev/null
+++ b/src/model/types/Value.hpp
@@ -0,0 +1,31 @@
+/*
+ Ousía
+ Copyright (C) 2014 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 <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef _VALUE_HPP_
+#define _VALUE_HPP_
+
+namespace ousia {
+namespace types {
+
+class Value {
+
+//TODO: THIS IS A DUMMY CLASS DECLARATION
+};
+}
+}
+#endif /* _VALUE_HPP_ */