mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
16 lines
295 B
C++
16 lines
295 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(const QString& text);
|
|
};
|
|
|
|
#endif // NOTIFYCONTROLLER_H
|