This commit is contained in:
King_DuckZ 2020-02-17 22:08:05 +01:00
parent 15f148013b
commit 600ada66f5
661 changed files with 1249 additions and 1049 deletions

View file

@ -8,7 +8,7 @@
*
* See the file LICENSE for redistribution information.
*
* $Id: FuncFactory.hpp,v 1.8 2006/11/01 16:37:12 jpcs Exp $
* $Id: FuncFactory.hpp,v 1.8.2.1 2007/01/12 18:04:46 gmfeinberg Exp $
*/
/*
@ -33,6 +33,7 @@ public:
virtual const XMLCh *getName() const = 0;
virtual const XMLCh *getURI() const = 0;
virtual const XMLCh *getQName() const = 0;
virtual unsigned int getMinArgs() const = 0;
virtual unsigned int getMaxArgs() const = 0;
};

View file

@ -8,7 +8,7 @@
*
* See the file LICENSE for redistribution information.
*
* $Id: XQUserFunction.hpp,v 1.12 2006/11/01 16:37:13 jpcs Exp $
* $Id: XQUserFunction.hpp,v 1.12.2.1 2007/01/12 18:04:46 gmfeinberg Exp $
*/
//////////////////////////////////////////////////////////////////////
@ -91,6 +91,7 @@ public:
virtual ASTNode *createInstance(const VectorOfASTNodes &args, XPath2MemoryManager* expr) const;
virtual const XMLCh* getName() const;
virtual const XMLCh *getURI() const;
virtual const XMLCh *getQName() const;
virtual unsigned int getMinArgs() const;
virtual unsigned int getMaxArgs() const;
@ -126,6 +127,7 @@ protected:
XPath2MemoryManager* m_pMemMgr;
StaticResolutionContext _src;
bool m_bCalculatingSRC;
XERCES_CPP_NAMESPACE_QUALIFIER XMLBuffer m_qname;
DocumentCache* m_moduleDocCache;
friend class XQFunctionEvaluator;