diff options
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; +} /** |
