/* * Copyright (c) 2023, Gregory Bertilson * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include "EventLoopImplementationQt.h" namespace Ladybird { class EventLoopImplementationQtEventTarget final : public QObject { Q_OBJECT public: virtual bool event(QEvent* event) override; }; }