Files
RRJClient/Core/notifycontroller.h
2025-08-13 10:22:14 +03:00

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