20 lines
319 B
C++
20 lines
319 B
C++
//
|
|
// Created by selim on 14.05.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_MESSAGEDIALOG_H
|
|
#define AUTOCAT_GNOME_MESSAGEDIALOG_H
|
|
|
|
#include "Window.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
class MessageDialog {
|
|
public:
|
|
static void showError(Window* parent, const std::string& text);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_MESSAGEDIALOG_H
|