mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
notifyController -> specialWB
This commit is contained in:
20
InstructorsAndTrainees/specialmessagebox/notifycontroller.h
Normal file
20
InstructorsAndTrainees/specialmessagebox/notifycontroller.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user