mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
17 lines
228 B
C++
17 lines
228 B
C++
/*
|
|
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace XML {
|
|
|
|
class Parser;
|
|
class Document;
|
|
struct Node;
|
|
struct Attribute;
|
|
struct Listener;
|
|
|
|
}
|