/* * 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 #include 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