Forward.h 274 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Diff {
  8. enum class Format;
  9. class Parser;
  10. struct Header;
  11. struct Hunk;
  12. struct HunkLocation;
  13. struct Line;
  14. struct Patch;
  15. struct Range;
  16. }