PNPkurs-PIbd-31-Alekseev-I-S/presenter.h

22 lines
320 B
C
Raw Permalink Normal View History

2025-01-15 22:57:00 +04:00
#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