mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
14 lines
270 B
C++
14 lines
270 B
C++
#pragma once
|
|
|
|
#include <LibGUI/GDialog.h>
|
|
|
|
class GMessageBox : public GDialog {
|
|
public:
|
|
explicit GMessageBox(const String& text, const String& title, CObject* parent = nullptr);
|
|
virtual ~GMessageBox() override;
|
|
|
|
private:
|
|
void build();
|
|
|
|
String m_text;
|
|
};
|