2019-02-14 22:25:53 +08:00
|
|
|
#ifndef DB3_H
|
|
|
|
|
#define DB3_H
|
|
|
|
|
|
2019-02-27 00:07:14 +08:00
|
|
|
#include "database.h"
|
|
|
|
|
|
2019-02-14 22:25:53 +08:00
|
|
|
class Table3;
|
|
|
|
|
|
|
|
|
|
class DB3 : public Nut::Database
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
NUT_DB_VERSION(1)
|
|
|
|
|
|
|
|
|
|
NUT_DECLARE_TABLE(Table3, sampleTable)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DB3();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(DB3*)
|
|
|
|
|
|
|
|
|
|
#endif // DB3_H
|