From e47e9be6fd9f99acfa9e46c660b7c885a9141380 Mon Sep 17 00:00:00 2001 From: Bob Jamison Date: Thu, 27 Apr 2006 09:53:08 +0000 Subject: interim cleanup commit (bzr r597) --- src/dom/domimpl.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/dom/domimpl.cpp') 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; +} /** -- cgit v1.2.3