Files
cpp-opds/include/backend.h

20 lines
251 B
C
Raw Normal View History

2025-02-02 01:07:48 +05:00
#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