feat: add versionChanger for GUI

This commit is contained in:
semenov
2025-01-21 11:33:51 +03:00
parent 97fee998bb
commit 3e95be4447
29 changed files with 1259 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
#ifndef NOTIFYCONTROLLER_H
#define NOTIFYCONTROLLER_H
#include <QObject>
#include <QMessageBox>
class NotifyController : public QObject
{
Q_OBJECT
public:
explicit NotifyController(QObject *parent = nullptr);
void showWarning(QString text);
signals:
};
#endif // NOTIFYCONTROLLER_H