summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-01-21 22:20:34 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-01-21 22:20:34 +0100
commitb91d736953895e9ce722390d9549d373647d4ea1 (patch)
tree3175545e294205aea16c73068f59986cd72d45e9
parent4ff279b998ce55bc1132e699976c51e7246ff3cc (diff)
added Node::getValidationState
-rw-r--r--src/core/model/Node.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/model/Node.hpp b/src/core/model/Node.hpp
index 6b13c30..6923125 100644
--- a/src/core/model/Node.hpp
+++ b/src/core/model/Node.hpp
@@ -512,6 +512,13 @@ public:
* @return true if this Node is valid.
*/
bool validate(Logger &logger) const;
+
+ /**
+ * Returns the current ValidationState of this Node.
+ *
+ * @return the current ValidationState of this Node.
+ */
+ ValidationState getValidationState() const { return validationState; }
};
/**