mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
21 lines
389 B
C++
21 lines
389 B
C++
#ifndef NOTIFYCONTROLLER_H
|
|
#define NOTIFYCONTROLLER_H
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
|
|
class NotifyController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit NotifyController(QWidget *parentWidget = nullptr, QObject *parent = nullptr);
|
|
|
|
void showWarning(QString text, QWidget *parentWidget = nullptr);
|
|
|
|
private:
|
|
QWidget *parentWidget;
|
|
|
|
};
|
|
|
|
#endif // NOTIFYCONTROLLER_H
|