ClickHouse/base/poco/XML/include/Poco/DOM/ChildNodesList.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
972 B
C++
Raw Permalink Normal View History

//
// ChildNodesList.h
//
// Library: XML
// Package: DOM
// Module: DOM
//
// Definition of the ChildNodesList class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef DOM_ChildNodesList_INCLUDED
#define DOM_ChildNodesList_INCLUDED
#include "Poco/DOM/NodeList.h"
2023-02-13 09:00:23 +00:00
#include "Poco/XML/XML.h"
2023-02-13 09:00:23 +00:00
namespace Poco
{
namespace XML
{
2023-02-13 09:00:23 +00:00
class XML_API ChildNodesList : public NodeList
// This implementation of NodeList is returned
// by Node::getChildNodes().
{
public:
Node * item(unsigned long index) const;
unsigned long length() const;
void autoRelease();
protected:
ChildNodesList(const Node * pParent);
~ChildNodesList();
2023-02-13 09:00:23 +00:00
private:
ChildNodesList();
2023-02-13 09:00:23 +00:00
const Node * _pParent;
2023-02-13 09:00:23 +00:00
friend class AbstractNode;
};
2023-02-13 09:00:23 +00:00
}
} // namespace Poco::XML
#endif // DOM_ChildNodesList_INCLUDED