/* * 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: FunctionEmpty.hpp,v 1.10 2006/11/01 16:37:13 jpcs Exp $ */ /* Empty function */ #ifndef _FUNCTIONEMPTY_HPP #define _FUNCTIONEMPTY_HPP #include #include class XQILLA_API FunctionEmpty : public ConstantFoldingFunction { public: static const XMLCh name[]; static const unsigned int minArgs; static const unsigned int maxArgs; FunctionEmpty(const VectorOfASTNodes &args, XPath2MemoryManager* memMgr); ASTNode* staticResolution(StaticContext *context); virtual ASTNode *staticTyping(StaticContext *context); Sequence collapseTreeInternal(DynamicContext* context, int flags=0) const; }; #endif // _FUNCTIONEMPTY_HPP