mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:12:43 +00:00 
			
		
		
		
	 05f41382bb
			
		
	
	
		05f41382bb
		
	
	
	
	
		
			
			In order to avoid the base encode/decode methods from being used (and failing a static assertion), we must be sure to declare/define the custom type implementations as template specializations. After this, LibIPC is no longer sensitive to include order.
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/RefPtr.h>
 | |
| #include <LibGfx/Bitmap.h>
 | |
| #include <LibGfx/Size.h>
 | |
| 
 | |
| namespace Gfx {
 | |
| 
 | |
| class ShareableBitmap {
 | |
| public:
 | |
|     ShareableBitmap() = default;
 | |
| 
 | |
|     enum Tag { ConstructWithKnownGoodBitmap };
 | |
|     ShareableBitmap(NonnullRefPtr<Gfx::Bitmap>, Tag);
 | |
| 
 | |
|     bool is_valid() const { return m_bitmap; }
 | |
| 
 | |
|     Bitmap const* bitmap() const { return m_bitmap; }
 | |
|     Bitmap* bitmap() { return m_bitmap; }
 | |
| 
 | |
| private:
 | |
|     friend class Bitmap;
 | |
| 
 | |
|     RefPtr<Bitmap> m_bitmap;
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| namespace IPC {
 | |
| 
 | |
| template<>
 | |
| bool encode(Encoder&, Gfx::ShareableBitmap const&);
 | |
| 
 | |
| template<>
 | |
| ErrorOr<void> decode(Decoder&, Gfx::ShareableBitmap&);
 | |
| 
 | |
| }
 |