Nut/test/tst_json/db.h

23 lines
243 B
C++

#ifndef DB1_H
#define DB1_H
#include "database.h"
class Table;
class DB : public Nut::Database
{
Q_OBJECT
NUT_DB_VERSION(1)
NUT_DECLARE_TABLE(Table, sampleTable)
public:
DB();
};
Q_DECLARE_METATYPE(DB*)
#endif // DB1_H