mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:58:11 +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.
15 lines
205 B
C++
15 lines
205 B
C++
/*
|
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
namespace GUI::GML {
|
|
|
|
String format_gml(StringView);
|
|
|
|
}
|