9 lines
157 B
C++
9 lines
157 B
C++
|
|
#include "testdatabase.h"
|
||
|
|
#include "test.h"
|
||
|
|
|
||
|
|
TestDatabase::TestDatabase(QObject *parent)
|
||
|
|
: Database(parent), m_tests(new Nut::TableSet<Test>(this))
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|