mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/AKString.h>
 | |
| 
 | |
| class GClipboard {
 | |
| public:
 | |
|     static GClipboard& the();
 | |
| 
 | |
|     String data() const;
 | |
|     void set_data(const String&);
 | |
| 
 | |
| private:
 | |
|     GClipboard();
 | |
| };
 | 
