1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 21:45:08 +00:00
serenity/LibGUI/GMessageBox.h
2019-04-10 17:01:54 +02:00

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;
};