22 lines
320 B
C++
22 lines
320 B
C++
#ifndef PRESENTER_H
|
|
#define PRESENTER_H
|
|
|
|
#include <QObject>
|
|
|
|
#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
|