MessageBox.hpp
1 #pragma once
2 #include <QString>
3 
4 #include <score_lib_base_export.h>
5 class QWidget;
6 namespace score
7 {
8 
9 SCORE_LIB_BASE_EXPORT int
10 question(QWidget* parent, const QString& title, const QString& text);
11 
12 SCORE_LIB_BASE_EXPORT int
13 information(QWidget* parent, const QString& title, const QString& text);
14 
15 SCORE_LIB_BASE_EXPORT int
16 warning(QWidget* parent, const QString& title, const QString& text);
17 
18 }
Base toolkit upon which the software is built.
Definition: Application.cpp:90