/* * Copyright (c) 2003, DecisionSoft Limited All rights reserved. * Please see LICENSE.TXT for more information. */ #ifndef _XMLCHCOMPARE_HPP #define _XMLCHCOMPARE_HPP #include #include #include class PATHAN_EXPORT QNameSort { public: bool operator() (const std::pair lhs, const std::pair rhs) const; }; class PATHAN_EXPORT XMLChSort { public: bool operator() (const XMLCh* lhs, const XMLCh* rhs) const; }; #endif