Nut/test/tst_quuid/testdatabase.h

19 lines
280 B
C
Raw Normal View History

2018-07-12 14:47:41 +08:00
#ifndef TESTDATABASE_H
#define TESTDATABASE_H
2019-02-27 03:51:29 +08:00
#include "database.h"
2018-07-12 14:47:41 +08:00
class Test;
class TestDatabase : public Nut::Database
{
Q_OBJECT
NUT_DB_VERSION(1)
NUT_DECLARE_TABLE(Test, tests)
public:
TestDatabase(QObject *parent = nullptr);
};
#endif // TESTDATABASE_H