EmojiInputDialog: Port to GML compilation

This commit is contained in:
Aryan Baburajan
2024-04-02 12:54:01 +05:30
committed by Tim Schumacher
parent d6ca054935
commit b2587cb11b
Notes: sideshowbarker 2024-07-17 07:31:31 +09:00
4 changed files with 33 additions and 9 deletions

View File

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