/* * Copyright (c) 2001, DecisionSoft Limited All rights reserved. * Please see LICENSE.TXT for more information. */ #ifndef _ANCESTORAXIS_HPP #define _ANCESTORAXIS_HPP #include #include /** This class implements the AncestorAxis as defined in the XPath spec */ class PATHAN_EXPORT AncestorAxis : public ReverseAxis { public: virtual Axis getAxis() const; protected: virtual Sequence makeList(const XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *node, const XMLCh* const uri, DynamicContext* context) const; }; #endif