Nut/__tests/auto/tst_quuid/testdatabase.h

19 lines
295 B
C++

#ifndef TESTDATABASE_H
#define TESTDATABASE_H
#include "database.h"
class Test;
class TestDatabase : public NUT_WRAP_NAMESPACE(Database)
{
Q_OBJECT
NUT_DB_VERSION(1)
NUT_DECLARE_TABLE(Test, tests)
public:
TestDatabase(QObject *parent = nullptr);
};
#endif // TESTDATABASE_H