mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:32:44 +00:00 
			
		
		
		
	 506b03740c
			
		
	
	
		506b03740c
		
	
	
	
	
		
			
			We were super inconsistent about this, with most "new" classes living in the Ladybird namespace, while "old" ones were in the global namespace, or even sitting in the Browser namespace.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| namespace Ladybird {
 | |
| 
 | |
| enum UseLagomNetworking {
 | |
|     No,
 | |
|     Yes
 | |
| };
 | |
| 
 | |
| }
 |