XQuilla/include/xqilla/context/impl/CodepointCollation.hpp

32 lines
827 B
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.
*
2020-02-17 21:11:31 +00:00
* $Id: CodepointCollation.hpp,v 1.9 2007/07/10 16:28:57 jpcs Exp $
2020-02-17 21:05:20 +00:00
*/
2020-02-17 21:11:31 +00:00
#ifndef CODEPOINTCOLLATION_HPP
#define CODEPOINTCOLLATION_HPP
2020-02-17 21:05:20 +00:00
#include <xqilla/framework/XQillaExport.hpp>
#include <xqilla/context/impl/CollationImpl.hpp>
class XPath2MemoryManager;
class XQILLA_API CodepointCollation : public CollationHelper {
public:
CodepointCollation();
static const XMLCh* getCodepointCollationName();
virtual const XMLCh* getCollationName() const;
virtual int compare(const XMLCh* string1, const XMLCh* string2) const;
};
2020-02-17 21:11:31 +00:00
#endif