blob: f3418fa9998e4e63c198fb8276cf6cbcc261b285 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if !defined(XALANNODELISTSURROGATE_HEADER_GUARD_1357924680)
#define XALANNODELISTSURROGATE_HEADER_GUARD_1357924680
#include <xalanc/XalanDOM/XalanDOMDefinitions.hpp>
#include <xalanc/XalanDOM/XalanNodeList.hpp>
namespace XALAN_CPP_NAMESPACE {
class XalanNode;
/*
* <meta name="usage" content="deprecated"/>
*
* Helper class for implementing the DOM NodeList interface.
*
* This class is deprecated and should not be used!!
*/
class XALAN_DOM_EXPORT XalanNodeListSurrogate : public XalanNodeList
{
public:
XalanNodeListSurrogate(const XalanNode& theNode);
XalanNodeListSurrogate(const XalanNodeListSurrogate& theSource);
virtual
~XalanNodeListSurrogate();
XalanNodeListSurrogate&
operator=(const XalanNodeListSurrogate& theSource)
{
m_node = theSource.m_node;
XalanNodeList::operator=(theSource);
return *this;
}
bool
operator==(const XalanNodeListSurrogate& theRHS) const
{
return m_node == theRHS.m_node ? true : false;
}
virtual XalanNode*
item(XalanSize_t index) const;
virtual XalanSize_t
getLength() const;
private:
const XalanNode* m_node;
};
}
#endif // !defined(XALANNODELISTSURROGATE_HEADER_GUARD_1357924680)