mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
23 lines
354 B
C
23 lines
354 B
C
|
/*
|
||
|
* Copyright (c) 2023, Gregory Bertilson <zaggy1024@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QEvent>
|
||
|
|
||
|
#include "EventLoopImplementationQt.h"
|
||
|
|
||
|
namespace Ladybird {
|
||
|
|
||
|
class EventLoopImplementationQtEventTarget final : public QObject {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
virtual bool event(QEvent* event) override;
|
||
|
};
|
||
|
|
||
|
}
|