/* * Copyright (c) 2001, DecisionSoft Limited All rights reserved. * Please see LICENSE.TXT for more information. */ /* StartsWith function */ #ifndef _FUNCTIONSTARTSWITH_HPP #define _FUNCTIONSTARTSWITH_HPP #include /** StartsWith function. */ class PATHAN_EXPORT FunctionStartsWith : public ConstantFoldingFunction { public: static const XMLCh name[]; FunctionStartsWith(const VectorOfDataItems &args, XPath2MemoryManager* memMgr); /** XPath function. returns true if string1 starts with string2 **/ Sequence collapseTreeInternal(DynamicContext* context, int flags=0) const; }; #endif // _FUNCTIONSTARTSWITH_HPP