XQuilla/include/xqilla/axis/ParentAxis.hpp
2020-02-17 22:05:20 +01:00

30 lines
863 B
C++

/*
* Copyright (c) 2001-2006
* DecisionSoft Limited. All rights reserved.
* Copyright (c) 2004-2006
* Progress Software Corporation. All rights reserved.
* Copyright (c) 2004-2006
* Oracle. All rights reserved.
*
* See the file LICENSE for redistribution information.
*
* $Id: ParentAxis.hpp,v 1.9 2006/11/01 16:37:11 jpcs Exp $
*/
#ifndef _PARENTAXIS_HPP
#define _PARENTAXIS_HPP
#include <xqilla/axis/Axis.hpp>
class XQILLA_API ParentAxis : public Axis
{
public:
ParentAxis(const LocationInfo *info, const XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *contextNode, const Node *nodeObj,
const NodeTest *nodeTest, const AxisNodeFactory &factory = Axis::gNodeImplFactory);
const XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *nextNode(DynamicContext *context);
std::string asString(DynamicContext *context, int indent) const;
};
#endif