mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:58:13 +00:00

Prefixes are very much a C thing which we don't need in C++. This commit moves all GML-related classes in LibGUI into the GUI::GML namespace, a change somewhat overdue.
16 lines
285 B
C++
16 lines
285 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
namespace GUI::GML {
|
|
|
|
JsonValue parse_gml(StringView);
|
|
|
|
}
|