summaryrefslogtreecommitdiff
path: root/src/model/types
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2014-03-06 11:54:40 +0000
committerbenjamin <benjamin@daaaf23c-2e50-4459-9457-1e69db5a47bf>2014-03-06 11:54:40 +0000
commit1cb5fdc15c5f8399ca08377eb498f7c27c2eee85 (patch)
tree1e3a23d78b094d40d9fb80ce8e330bdc113eb2e4 /src/model/types
parent247945811adbfb5ddaa1ba4e1f3dfc20cd7eb058 (diff)
reworked the model classes according to manipulated GraphNode and removed some bugs resulting from a misunderstanding between abtract domain declarations and instances.
git-svn-id: file:///var/local/svn/basicwriter@29 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'src/model/types')
-rw-r--r--src/model/types/Type.hpp10
-rw-r--r--src/model/types/Value.hpp6
2 files changed, 7 insertions, 9 deletions
diff --git a/src/model/types/Type.hpp b/src/model/types/Type.hpp
index 155f898..c4a9900 100644
--- a/src/model/types/Type.hpp
+++ b/src/model/types/Type.hpp
@@ -16,18 +16,16 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _TYPE_HPP_
-#define _TYPE_HPP_
-
-#include <model/GraphNode.hpp>
+#ifndef _OUSIA_TYPES_TYPE_HPP_
+#define _OUSIA_TYPES_TYPE_HPP_
namespace ousia {
namespace types {
-class Type : public GraphNode {
+class Type {
//TODO: THIS IS A DUMMY CLASS DECLARATION
};
}
}
-#endif /* _TYPE_HPP_ */
+#endif /* _OUSIA_TYPES_TYPE_HPP_ */
diff --git a/src/model/types/Value.hpp b/src/model/types/Value.hpp
index 3076dd2..ec9f354 100644
--- a/src/model/types/Value.hpp
+++ b/src/model/types/Value.hpp
@@ -16,8 +16,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _VALUE_HPP_
-#define _VALUE_HPP_
+#ifndef _OUSIA_TYPES_VALUE_HPP_
+#define _OUSIA_TYPES_VALUE_HPP_
namespace ousia {
namespace types {
@@ -28,4 +28,4 @@ class Value {
};
}
}
-#endif /* _VALUE_HPP_ */
+#endif /* _OUSIA_TYPES_VALUE_HPP_ */