mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:32:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| namespace Diff {
 | |
| 
 | |
| enum class Format;
 | |
| 
 | |
| class Parser;
 | |
| 
 | |
| struct Header;
 | |
| struct Hunk;
 | |
| struct HunkLocation;
 | |
| struct Line;
 | |
| struct Patch;
 | |
| struct Range;
 | |
| 
 | |
| }
 | 
