ladybird/Userland/Libraries/LibDiff/Forward.h

23 lines
274 B
C
Raw Normal View History

2023-07-06 11:41:32 +03:00
/*
* Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
2023-07-06 11:41:32 +03:00
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Diff {
enum class Format;
class Parser;
struct Header;
2023-07-06 11:41:32 +03:00
struct Hunk;
struct HunkLocation;
struct Line;
struct Patch;
2023-07-06 11:41:32 +03:00
struct Range;
}