mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
	
		
			161 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
	
		
			161 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | #pragma once
 | ||
|  | 
 | ||
|  | #include <LibGUI/GMenuItem.h>
 | ||
|  | #include <AK/Vector.h>
 | ||
|  | 
 | ||
|  | class GMenu { | ||
|  | public: | ||
|  |     GMenu(); | ||
|  |     ~GMenu(); | ||
|  | 
 | ||
|  | private: | ||
|  |     Vector<GMenuItem> m_items; | ||
|  | }; |