Files
RRJServer/InstructorsAndTrainees/connectorToServer/Core/notifycontroller.cpp
2025-09-15 18:20:39 +03:00

13 lines
294 B
C++

#include "notifycontroller.h"
#include "specialmessagebox.h"
NotifyController::NotifyController(QObject *parent) : QObject(parent)
{
}
void NotifyController::showWarning(QString text)
{
SpecialMessageBox(nullptr, SpecialMessageBox::TypeSpecMsgBox::warningWithoutButtons, text).exec();
}