Mercurial > dedupe
comparison EditDistance.hpp @ 40:f711ddb56ae7
Sort up includes.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Fri, 07 Sep 2012 13:32:33 +0200 |
| parents | fda70a362ed5 |
| children | 4c283daa42c7 |
comparison
equal
deleted
inserted
replaced
| 39:f23fa42238dc | 40:f711ddb56ae7 |
|---|---|
| 1 #ifndef EDITDISTANCE_HPP | 1 #ifndef EDITDISTANCE_HPP |
| 2 #define EDITDISTANCE_HPP | 2 #define EDITDISTANCE_HPP |
| 3 | 3 |
| 4 #include "DBCache.hpp" | |
| 4 #include "OrderedPair.hpp" | 5 #include "OrderedPair.hpp" |
| 5 #include "DBCache.hpp" | 6 #include "ThreadSafeLookup.hpp" |
| 6 #include "UniqueString.hpp" | 7 #include "UniqueString.hpp" |
| 7 | 8 |
| 9 #include <QtCore/QHash> | |
| 10 #include <QtCore/QMap> | |
| 8 #include <QtCore/QString> | 11 #include <QtCore/QString> |
| 9 #include <QtCore/QMap> | |
| 10 #include <QtCore/QHash> | |
| 11 | |
| 12 #include "ThreadSafeLookup.hpp" | |
| 13 | 12 |
| 14 class EditDistance { | 13 class EditDistance { |
| 15 protected: | 14 protected: |
| 16 //typedef ThreadSafeLookup<OrderedPair<QString>, int> cacheType; | 15 //typedef ThreadSafeLookup<OrderedPair<QString>, int> cacheType; |
| 17 typedef DBCache<OrderedPair<UniqueString>, int, true> cacheType; | 16 typedef DBCache<OrderedPair<UniqueString>, int, true> cacheType; |
