/* * 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: XQAtomize.hpp,v 1.6 2006/11/01 16:37:11 jpcs Exp $ */ #ifndef _XQATOMIZE_HPP #define _XQATOMIZE_HPP #include #include class XQILLA_API XQAtomize : public ASTNodeImpl { public: XQAtomize(ASTNode* expr, XPath2MemoryManager* memMgr); virtual Result createResult(DynamicContext* context, int flags=0) const; virtual ASTNode* staticResolution(StaticContext *context); virtual ASTNode *staticTyping(StaticContext *context); const ASTNode *getExpression() const { return expr_; } void setExpression(ASTNode *expr) { expr_ = expr; } protected: ASTNode* expr_; }; class XQILLA_API AtomizeResult : public ResultImpl { public: AtomizeResult(const LocationInfo *location, const Result &parent) : ResultImpl(location), _parent(parent), _sub(0) {} Item::Ptr next(DynamicContext *context); std::string asString(DynamicContext *context, int indent) const { return "atomizeresult"; } private: Result _parent; Result _sub; }; #endif