aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/messagebox.h
blob: b36fcea4ae7c32fe9fb493575b8c36ae59dd2c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "core_global.h"

QT_BEGIN_NAMESPACE
class QString;
class QWidget;
QT_END_NAMESPACE

namespace Core {
namespace AsynchronousMessageBox {

CORE_EXPORT QWidget *warning(const QString &title, const QString &desciption);
CORE_EXPORT QWidget *information(const QString &title, const QString &desciption);
CORE_EXPORT QWidget *critical(const QString &title, const QString &desciption);

}
}