mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
24 lines
458 B
C++
24 lines
458 B
C++
/*
|
|
* Copyright (c) 2024, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace NotificationServer {
|
|
|
|
class NotificationWidget : public GUI::Widget {
|
|
C_OBJECT_ABSTRACT(NotificationWidget)
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<NotificationWidget>> try_create();
|
|
virtual ~NotificationWidget() override = default;
|
|
|
|
private:
|
|
NotificationWidget() = default;
|
|
};
|
|
|
|
}
|