123456789101112131415161718192021 |
- /*
- * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/DeprecatedString.h>
- #include <AK/Forward.h>
- #include <LibGUI/GML/AST.h>
- #include <LibGUI/GML/Parser.h>
- namespace GUI::GML {
- inline ErrorOr<DeprecatedString> format_gml(StringView string)
- {
- return TRY(parse_gml(string))->to_deprecated_string();
- }
- }
|