mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:03:12 +02:00
13 lines
288 B
C
13 lines
288 B
C
|
|
#ifndef UNIVERSALFUNCTIONS_H
|
||
|
|
#define UNIVERSALFUNCTIONS_H
|
||
|
|
|
||
|
|
#include <QJsonObject>
|
||
|
|
|
||
|
|
QJsonObject readJsonFile(const QString title);
|
||
|
|
void saveJsonFile(QJsonObject &users, const QString name);
|
||
|
|
void outputMessageBox(const QString messageBoxText);
|
||
|
|
void exit();
|
||
|
|
|
||
|
|
|
||
|
|
#endif // UNIVERSALFUNCTIONS_H
|