summaryrefslogtreecommitdiffstats
path: root/src/dom/domimpl.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-04-27 09:53:08 +0000
committerishmal <ishmal@users.sourceforge.net>2006-04-27 09:53:08 +0000
commite47e9be6fd9f99acfa9e46c660b7c885a9141380 (patch)
treec86a604bd52a1392f4da84350578218c4600b42e /src/dom/domimpl.cpp
parentfixing conditional attribute evaluation on load (if conditional attributes we... (diff)
downloadinkscape-e47e9be6fd9f99acfa9e46c660b7c885a9141380.tar.gz
inkscape-e47e9be6fd9f99acfa9e46c660b7c885a9141380.zip
interim cleanup commit
(bzr r597)
Diffstat (limited to 'src/dom/domimpl.cpp')
-rw-r--r--src/dom/domimpl.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/dom/domimpl.cpp b/src/dom/domimpl.cpp
index e9da6291f..644c6567c 100644
--- a/src/dom/domimpl.cpp
+++ b/src/dom/domimpl.cpp
@@ -933,6 +933,24 @@ NodeImpl::NodeImpl()
}
+/**
+ *
+ */
+NodeImpl::NodeImpl(const NodeImpl &other)
+{
+ init();
+ assign(other);
+}
+
+/**
+ *
+ */
+NodeImpl &NodeImpl::operator=(const NodeImpl &other)
+{
+ init();
+ assign(other);
+ return *this;
+}
/**