#ifndef PRESENTER_H #define PRESENTER_H #include #include "service/serviceloaddb.h" #include "mainwindow.h" class Presenter : public QObject { Q_OBJECT public: Presenter(QObject *parent = nullptr); ~Presenter(); private: ServiceLoadDB *DB; MainWindow *window; }; #endif // PRESENTER_H