2019-06-03 04:29:44 +08:00
|
|
|
#ifndef DB1_H
|
|
|
|
|
#define DB1_H
|
|
|
|
|
|
|
|
|
|
#include "database.h"
|
|
|
|
|
|
|
|
|
|
class Table;
|
|
|
|
|
|
2022-04-28 19:53:42 +08:00
|
|
|
class DB : public NUT_WRAP_NAMESPACE(Database)
|
2019-06-03 04:29:44 +08:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
NUT_DB_VERSION(1)
|
|
|
|
|
|
|
|
|
|
NUT_DECLARE_TABLE(Table, sampleTable)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DB();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(DB*)
|
|
|
|
|
|
|
|
|
|
#endif // DB1_H
|