XQuilla/include/xqilla/ast/XQLiteral.hpp

52 lines
1.2 KiB
C++
Raw Normal View History

2020-02-17 21:05:20 +00:00
/*
* 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: XQLiteral.hpp,v 1.8 2006/11/01 16:37:11 jpcs Exp $
*/
#ifndef _XQLITERAL_HPP
#define _XQLITERAL_HPP
#include <xqilla/framework/XQillaExport.hpp>
#include <xqilla/ast/ASTNodeImpl.hpp>
class ItemConstructor;
/** defines the behaviour for the literal types*/
class XQILLA_API XQLiteral : public ASTNodeImpl
{
public:
XQLiteral(ItemConstructor *ic, XPath2MemoryManager* memMgr);
virtual bool isDateOrTimeAndHasNoTimezone(StaticContext* context) const;
virtual bool isSingleNumericConstant(StaticContext *context) const;
virtual ASTNode *staticTyping(StaticContext *context);
virtual ASTNode* staticResolution(StaticContext *context);
virtual Result createResult(DynamicContext* context, int flags=0) const;
const ItemConstructor *getItemConstructor() const
{
return _itemConstructor;
}
void setItemConstructor(ItemConstructor *i)
{
_itemConstructor = i;
}
private:
ItemConstructor *_itemConstructor;
};
#endif