Mercurial > dedupe
view ProtectedDictionary.hpp @ 2:2833b7f8884a
Sql backend is working.
Need to get more speed on comparisson.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Tue, 21 Aug 2012 14:25:33 +0200 |
| parents | a3834af36579 |
| children |
line wrap: on
line source
#ifndef PROTECTEDCONTAINER_HPP #define PROTECTEDCONTAINER_HPP #include <QtCore/QMap> template <typename Key_t, typename Value_t> class ProtectedDictionary { QMap<Key_t, Value_t> map; }; #endif //PROTECTEDCONTAINER_HPP
