Mercurial > dedupe
view OrderedPair.hpp @ 3:7a44ba08673d
Using LUTs for all filters.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Tue, 21 Aug 2012 15:09:22 +0200 |
| parents | a3834af36579 |
| children | b5943e4bf676 |
line wrap: on
line source
#ifndef ORDEREDPAIR_HPP #define ORDEREDPAIR_HPP #include <QtCore/QPair> template <typename S> class OrderedPair : public QPair<S, S> { public: OrderedPair(const S& a, const S&b) : QPair<S, S>(a<b?a:b, a<b?b:a) { } }; #endif //ORDEREDPAIR_HPP
