2019-02-14 22:25:53 +08:00
|
|
|
#ifndef DB2_H
|
|
|
|
|
#define DB2_H
|
|
|
|
|
|
2019-02-27 00:07:14 +08:00
|
|
|
#include "database.h"
|
|
|
|
|
|
2019-02-14 22:25:53 +08:00
|
|
|
class Table2;
|
|
|
|
|
|
2022-04-28 19:53:42 +08:00
|
|
|
class DB2 : public NUT_WRAP_NAMESPACE(Database)
|
2019-02-14 22:25:53 +08:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
NUT_DB_VERSION(1)
|
|
|
|
|
|
|
|
|
|
NUT_DECLARE_TABLE(Table2, sampleTable)
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DB2();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(DB2*)
|
|
|
|
|
|
|
|
|
|
#endif // DB2_H
|