#ifndef BACKEND_H #define BACKEND_H #include #include class Backend : public QObject { Q_OBJECT public: explicit Backend(QObject* parent = nullptr); ~Backend() override; void start(); private: QSqlDatabase db; }; #endif // BACKEND_H