Mercurial > dedupe
view TestDataBase.hpp @ 85:1f9e27a0bd7f
Allow for lazy calculation of checksums, ignore them, if only one file of given size.
| author | Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no> |
|---|---|
| date | Thu, 10 Oct 2013 15:55:30 +0200 |
| parents | 9744ec195be3 |
| children |
line wrap: on
line source
#ifndef TESTDATABASE_HPP #define TESTDATABASE_HPP #include <QtSql/QSqlDatabase> class TestDatabase { public: QSqlDatabase getDatabase(); TestDatabase(); ~TestDatabase(); private: const QString connectionName; QSqlDatabase *db; }; #endif //TESTDATABASE_HPP
