mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:52:44 +00: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;
 | |
| };
 | 
