22 lines
245 B
C
22 lines
245 B
C
|
|
#ifndef DB2_H
|
||
|
|
#define DB2_H
|
||
|
|
|
||
|
|
#include <Database>
|
||
|
|
class Table2;
|
||
|
|
|
||
|
|
class DB2 : public Nut::Database
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
NUT_DB_VERSION(1)
|
||
|
|
|
||
|
|
NUT_DECLARE_TABLE(Table2, sampleTable)
|
||
|
|
|
||
|
|
public:
|
||
|
|
DB2();
|
||
|
|
};
|
||
|
|
|
||
|
|
Q_DECLARE_METATYPE(DB2*)
|
||
|
|
|
||
|
|
#endif // DB2_H
|