mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-30 01:08:11 +00:00
23 lines
360 B
C++
23 lines
360 B
C++
/*
|
|
* Copyright (c) 2023, Gregory Bertilson <zaggy1024@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <UI/Qt/EventLoopImplementationQt.h>
|
|
|
|
#include <QEvent>
|
|
|
|
namespace Ladybird {
|
|
|
|
class EventLoopImplementationQtEventTarget final : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
virtual bool event(QEvent* event) override;
|
|
};
|
|
|
|
}
|