1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef MESSAGEBOX_H
6#define MESSAGEBOX_H
7
8#include <qglobal.h>
9
10QT_BEGIN_NAMESPACE
11class QString;
12class QWidget;
13QT_END_NAMESPACE
14
15namespace Internal {
16
17QWidget *warning(const QString &title, const QString &desciption);
18QWidget *information(const QString &title, const QString &desciption);
19QWidget *critical(const QString &title, const QString &desciption);
20
21}
22
23#endif // MESSAGEBOX_H
24