38 lines
898 B
C++
38 lines
898 B
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: Divide.hpp,v 1.9 2006/11/01 16:37:14 jpcs Exp $
|
|
*/
|
|
|
|
/*
|
|
Divide operator function
|
|
*/
|
|
|
|
#ifndef _DIVIDE_HPP
|
|
#define _DIVIDE_HPP
|
|
|
|
#include <xqilla/framework/XQillaExport.hpp>
|
|
#include <xqilla/operators/ArithmeticOperator.hpp>
|
|
|
|
/** OpDivide operator function*/
|
|
class XQILLA_API Divide : public ArithmeticOperator
|
|
{
|
|
public:
|
|
static const XMLCh name[];
|
|
|
|
Divide(const VectorOfASTNodes &args, XPath2MemoryManager* memMgr);
|
|
|
|
void calculateStaticType();
|
|
Item::Ptr execute(const AnyAtomicType::Ptr &atom1, const AnyAtomicType::Ptr &atom2, DynamicContext *context) const;
|
|
};
|
|
|
|
#endif // _DIVIDE_HPP
|
|
|
|
|