mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 00:42:29 +00:00
b79ead9c84
* Replicate poco into base/poco/ * De-register poco submodule * Build poco from ClickHouse * Exclude poco from stylecheck * Exclude poco from whitespace check * Exclude poco from typo check * Remove x bit from sources/headers (the style check complained) * Exclude poco from duplicate include check * Fix fasttest * Remove contrib/poco-cmake/* * Simplify poco build descriptions * Remove poco stuff not used by ClickHouse * Glob poco sources * Exclude poco from clang-tidy
71 lines
1.2 KiB
C++
71 lines
1.2 KiB
C++
//
|
|
// DocumentFragment.cpp
|
|
//
|
|
// Library: XML
|
|
// Package: DOM
|
|
// Module: DOM
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/DOM/DocumentFragment.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace XML {
|
|
|
|
|
|
const XMLString DocumentFragment::NODE_NAME = toXMLString("#document-fragment");
|
|
|
|
|
|
DocumentFragment::DocumentFragment(Document* pOwnerDocument):
|
|
AbstractContainerNode(pOwnerDocument)
|
|
{
|
|
}
|
|
|
|
|
|
DocumentFragment::DocumentFragment( Document* pOwnerDocument, const DocumentFragment& fragment):
|
|
AbstractContainerNode(pOwnerDocument, fragment)
|
|
{
|
|
}
|
|
|
|
|
|
DocumentFragment::~DocumentFragment()
|
|
{
|
|
}
|
|
|
|
|
|
const XMLString& DocumentFragment::nodeName() const
|
|
{
|
|
return NODE_NAME;
|
|
}
|
|
|
|
|
|
unsigned short DocumentFragment::nodeType() const
|
|
{
|
|
return Node::DOCUMENT_FRAGMENT_NODE;
|
|
}
|
|
|
|
|
|
Node* DocumentFragment::copyNode(bool deep, Document* pOwnerDocument) const
|
|
{
|
|
DocumentFragment* pClone = new DocumentFragment(pOwnerDocument, *this);
|
|
if (deep)
|
|
{
|
|
Node* pCur = firstChild();
|
|
while (pCur)
|
|
{
|
|
pClone->appendChild(static_cast<AbstractNode*>(pCur)->copyNode(deep, pOwnerDocument))->release();
|
|
pCur = pCur->nextSibling();
|
|
}
|
|
}
|
|
return pClone;
|
|
}
|
|
|
|
|
|
} } // namespace Poco::XML
|