mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
20 lines
233 B
C++
20 lines
233 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace URL {
|
|
|
|
class Host;
|
|
class Origin;
|
|
class Parser;
|
|
class Site;
|
|
class URL;
|
|
|
|
struct BlobURLEntry;
|
|
|
|
}
|