2020-12-20 11:47:44 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2022-02-02 18:11:29 +01:00
|
|
|
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
|
2020-12-20 11:47:44 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-12-20 11:47:44 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
2022-02-04 17:19:22 +01:00
|
|
|
#include <LibGUI/GML/AST.h>
|
2020-12-20 11:47:44 +01:00
|
|
|
|
2022-02-02 18:11:29 +01:00
|
|
|
namespace GUI::GML {
|
2020-12-20 11:47:44 +01:00
|
|
|
|
2022-02-04 17:19:22 +01:00
|
|
|
ErrorOr<NonnullRefPtr<GMLFile>> parse_gml(StringView);
|
2020-12-20 11:47:44 +01:00
|
|
|
|
|
|
|
|
}
|