GPT first

This commit is contained in:
2025-02-02 01:07:48 +05:00
parent 18a6f4bb2c
commit 4e4e3d8a45
4 changed files with 63 additions and 0 deletions

19
include/backend.h Normal file
View 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