XQuilla/include/xqilla/ast/XQTextConstructor.hpp
2020-02-17 22:05:20 +01:00

38 lines
1.1 KiB
C++

/*
* 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: XQTextConstructor.hpp,v 1.1 2006/11/03 17:04:19 jpcs Exp $
*/
#if !defined(AFXQ_XQTEXTCONSTRUCTOR_H__56E97972_3896_49D3_B055_36CC3E9E550A__INCLUDED_)
#define AFXQ_XQTEXTCONSTRUCTOR_H__56E97972_3896_49D3_B055_36CC3E9E550A__INCLUDED_
#include <xqilla/ast/XQDOMConstructor.hpp>
class XQILLA_API XQTextConstructor : public XQDOMConstructor
{
public:
XQTextConstructor(bool isCDATA, ASTNode *value, XPath2MemoryManager* mm);
virtual Sequence collapseTreeInternal(DynamicContext* context, int flags=0) const;
virtual ASTNode* staticResolution(StaticContext *context);
virtual ASTNode *staticTyping(StaticContext *context);
virtual const XMLCh* getNodeType() const;
virtual const ASTNode *getValue() const;
virtual void setValue(ASTNode *value);
private:
const XMLCh *m_nodeType;
ASTNode *m_value;
};
#endif