123456789101112131415161718192021 |
- /*
- * Copyright (c) 2023, Shannon Booth <shannon.ml.booth@gmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- namespace Diff {
- enum class Format;
- class Parser;
- struct Header;
- struct Hunk;
- struct HunkLocation;
- struct Line;
- struct Range;
- }
|