diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-04-27 09:53:08 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-04-27 09:53:08 +0000 |
| commit | e47e9be6fd9f99acfa9e46c660b7c885a9141380 (patch) | |
| tree | c86a604bd52a1392f4da84350578218c4600b42e /src/dom/domimpl.cpp | |
| parent | fixing conditional attribute evaluation on load (if conditional attributes we... (diff) | |
| download | inkscape-e47e9be6fd9f99acfa9e46c660b7c885a9141380.tar.gz inkscape-e47e9be6fd9f99acfa9e46c660b7c885a9141380.zip | |
interim cleanup commit
(bzr r597)
Diffstat (limited to 'src/dom/domimpl.cpp')
| -rw-r--r-- | src/dom/domimpl.cpp | 18 |
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; +} /** |
