Mercurial > dedupe
view TestDataBase.hpp @ 86:af7962f3274b
Use quint64 for sizes, rather than qint64.
| author | Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no> |
|---|---|
| date | Thu, 10 Oct 2013 16:07:35 +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
