mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:32:46 +00:00 
			
		
		
		
	 3adf01b816
			
		
	
	
		3adf01b816
		
	
	
	
	
		
			
			The type of MessageBuffer will be changing, and it was a bit awkward to look around to find where the forward declaration was. This patch just moves it to the obvious forwarding header.
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/ByteString.h>
 | |
| #include <AK/OwnPtr.h>
 | |
| #include <LibIPC/Forward.h>
 | |
| 
 | |
| namespace AK {
 | |
| class BufferStream;
 | |
| }
 | |
| 
 | |
| namespace IPC {
 | |
| 
 | |
| class Stub {
 | |
| public:
 | |
|     virtual ~Stub() = default;
 | |
| 
 | |
|     virtual u32 magic() const = 0;
 | |
|     virtual ByteString name() const = 0;
 | |
|     virtual ErrorOr<OwnPtr<MessageBuffer>> handle(Message const&) = 0;
 | |
| 
 | |
| protected:
 | |
|     Stub() = default;
 | |
| 
 | |
| private:
 | |
|     ByteString m_name;
 | |
| };
 | |
| 
 | |
| }
 |