XQuilla/include/xqilla/ast/XQCommentConstructor.hpp

38 lines
1.1 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: XQCommentConstructor.hpp,v 1.1 2006/11/03 17:04:19 jpcs Exp $
*/
#if !defined(AFXQ_XQCOMMENTCONSTRUCTOR_H__56E97972_3896_49D3_B055_36CC3E9E550A__INCLUDED_)
#define AFXQ_XQCOMMENTCONSTRUCTOR_H__56E97972_3896_49D3_B055_36CC3E9E550A__INCLUDED_
#include <xqilla/ast/XQDOMConstructor.hpp>
class XQILLA_API XQCommentConstructor : public XQDOMConstructor
{
public:
XQCommentConstructor(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:
ASTNode *m_value;
};
#endif