1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

AboutDialog: Port to GML Complier

This commit is contained in:
Aarushi Chauhan 2024-01-31 19:20:44 +05:30 committed by Andrew Kaster
parent ea59bfaae7
commit 564e619f57
4 changed files with 29 additions and 6 deletions

View file

@ -0,0 +1,23 @@
/*
* Copyright (c) 2024, Aarushi Chauhan <aarushi595.chauhan@gmail.com>.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Frame.h>
namespace GUI {
class AboutDialogWidget : public GUI::Widget {
C_OBJECT_ABSTRACT(AboutDialogWidget)
public:
static ErrorOr<NonnullRefPtr<AboutDialogWidget>> try_create();
virtual ~AboutDialogWidget() override = default;
private:
AboutDialogWidget() = default;
};
}