mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
19 lines
299 B
C++
19 lines
299 B
C++
#ifndef NOTIFYCONTROLLER_H
|
|
#define NOTIFYCONTROLLER_H
|
|
|
|
#include <QObject>
|
|
#include <QMessageBox>
|
|
|
|
class NotifyController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit NotifyController(QObject *parent = nullptr);
|
|
|
|
void showWarning(QString text);
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // NOTIFYCONTROLLER_H
|