20 lines
239 B
C
20 lines
239 B
C
|
#ifndef DBUNIT_H
|
||
|
#define DBUNIT_H
|
||
|
|
||
|
#include <QSqlDatabase>
|
||
|
|
||
|
class DBUnit
|
||
|
{
|
||
|
public:
|
||
|
DBUnit();
|
||
|
|
||
|
QSqlQuery getQuery() const;
|
||
|
|
||
|
private:
|
||
|
QSqlDatabase db_ins;
|
||
|
|
||
|
void init_basic_tables(QSqlDatabase& db_ins);
|
||
|
};
|
||
|
|
||
|
#endif // DBUNIT_H
|