31 lines
774 B
C++
31 lines
774 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: XMLChCompare.hpp,v 1.7 2006/11/01 16:37:17 jpcs Exp $
|
|
*/
|
|
|
|
#ifndef _XMLCHCOMPARE_HPP
|
|
#define _XMLCHCOMPARE_HPP
|
|
|
|
#include <xqilla/framework/XQillaExport.hpp>
|
|
#include <algorithm>
|
|
#include <xercesc/util/XercesDefs.hpp>
|
|
|
|
class XQILLA_API QNameSort {
|
|
public:
|
|
bool operator() (const std::pair<XMLCh*, XMLCh *> lhs, const std::pair<XMLCh*, XMLCh *> rhs) const;
|
|
};
|
|
|
|
class XQILLA_API XMLChSort {
|
|
public:
|
|
bool operator() (const XMLCh* lhs, const XMLCh* rhs) const;
|
|
};
|
|
|
|
#endif
|