Nut/__tests/auto/tst_properties/sampledatabase.h

18 lines
297 B
C
Raw Normal View History

2023-02-20 22:54:33 +08:00
#ifndef SAMPLEDATABASE_H
#define SAMPLEDATABASE_H
#include <QtNut/Database>
class SampleTable;
class SampleDataBase : public NUT_WRAP_NAMESPACE(Database)
{
Q_OBJECT
NUT_DB_VERSION(1)
NUT_DECLARE_TABLE(SampleTable, items)
public:
SampleDataBase();
};
#endif // SAMPLEDATABASE_H