mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:42:43 +00:00 
			
		
		
		
	 73fdbba59c
			
		
	
	
		73fdbba59c
		
	
	
	
	
		
			
			This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <AK/ByteBuffer.h>
 | |
| 
 | |
| class IMessage {
 | |
| public:
 | |
|     virtual ~IMessage();
 | |
| 
 | |
|     virtual int id() const = 0;
 | |
|     virtual String name() const = 0;
 | |
|     virtual ByteBuffer encode() const = 0;
 | |
| 
 | |
| protected:
 | |
|     IMessage();
 | |
| };
 |