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