summaryrefslogtreecommitdiff
path: root/src/core/model/Node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/model/Node.hpp')
-rw-r--r--src/core/model/Node.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/model/Node.hpp b/src/core/model/Node.hpp
index 6923125..c5761a8 100644
--- a/src/core/model/Node.hpp
+++ b/src/core/model/Node.hpp
@@ -210,6 +210,13 @@ private:
protected:
/**
+ * Sets the parent node.
+ *
+ * @param parent is a Handle to the parent node.
+ */
+ void setParent(Handle<Node> parent);
+
+ /**
* Function which should be overwritten by derived classes in order to
* resolve node names to a list of possible nodes. The implementations of
* this function do not need to do anything but call the
@@ -451,13 +458,6 @@ public:
Rooted<Managed> getParent() const { return parent; }
/**
- * Sets the parent node.
- *
- * @param parent is a Handle to the parent node.
- */
- void setParent(Handle<Node> parent);
-
- /**
* Returns true, if the node does not have a parent. Root nodes may either
* be the root element of the complete DOM tree
*