2023-07-06 05:41:32 -03:00
|
|
|
/*
|
2023-07-15 07:33:22 -03:00
|
|
|
* Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
|
2023-07-06 05:41:32 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace Diff {
|
|
|
|
|
|
2023-07-06 05:52:26 -03:00
|
|
|
enum class Format;
|
|
|
|
|
|
2023-07-02 04:19:22 -03:00
|
|
|
class Parser;
|
|
|
|
|
|
2023-07-06 05:41:32 -03:00
|
|
|
struct Hunk;
|
|
|
|
|
struct HunkLocation;
|
|
|
|
|
struct Line;
|
|
|
|
|
struct Range;
|
|
|
|
|
|
|
|
|
|
}
|