/* * Copyright (c) 2024, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace NotificationServer { class NotificationWidget : public GUI::Widget { C_OBJECT_ABSTRACT(NotificationWidget) public: static ErrorOr> try_create(); virtual ~NotificationWidget() override = default; private: NotificationWidget() = default; }; }