2019-01-21 00:29:54 +08:00
|
|
|
#ifndef DB_H
|
|
|
|
|
#define DB_H
|
|
|
|
|
|
|
|
|
|
#include "database.h"
|
|
|
|
|
|
|
|
|
|
class SampleTable;
|
|
|
|
|
class DB : public Nut::Database
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
NUT_DB_VERSION(1)
|
|
|
|
|
|
|
|
|
|
NUT_DECLARE_TABLE(SampleTable, sampleTables)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DB();
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-10 17:35:35 +08:00
|
|
|
Q_DECLARE_METATYPE(DB*)
|
|
|
|
|
|
2019-01-21 00:29:54 +08:00
|
|
|
#endif // DB_H
|