XQuilla/include/xqilla/operators/NotEquals.hpp

41 lines
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: NotEquals.hpp,v 1.9 2006/11/01 16:37:14 jpcs Exp $
*/
/*
NotEquals operator function
*/
#ifndef _NOTEQUALS_HPP
#define _NOTEQUALS_HPP
#include <xqilla/framework/XQillaExport.hpp>
#include <xqilla/operators/ComparisonOperator.hpp>
class Collation;
/** OpNotEquals operator function*/
class XQILLA_API NotEquals : public ComparisonOperator
{
public:
static const XMLCh name[];
NotEquals(const VectorOfASTNodes &args, XPath2MemoryManager* memMgr);
static bool not_equals(const AnyAtomicType::Ptr &arg1, const AnyAtomicType::Ptr &arg2, Collation* collation, DynamicContext* context, const LocationInfo *info);
bool execute(const AnyAtomicType::Ptr &atom1, const AnyAtomicType::Ptr &atom2, DynamicContext *context) const;
};
#endif // _NOTEQUALS_HPP