GPT first
This commit is contained in:
19
include/backend.h
Normal file
19
include/backend.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef BACKEND_H
|
||||
#define BACKEND_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QtSql>
|
||||
|
||||
class Backend : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit Backend(QObject *parent = nullptr);
|
||||
void start();
|
||||
|
||||
private:
|
||||
QSqlDatabase db;
|
||||
};
|
||||
|
||||
#endif // BACKEND_H
|
||||
Reference in New Issue
Block a user