2021-08-30 07:43:28 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, sin-ack <sin-ack@protonmail.com>
|
2022-02-26 13:09:45 -03:00
|
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
2021-08-30 07:43:28 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-08-06 13:09:39 -03:00
|
|
|
#include <LibCore/EventReceiver.h>
|
2021-08-30 07:43:28 -03:00
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
2023-08-06 13:09:39 -03:00
|
|
|
class DeferredInvocationContext final : public Core::EventReceiver {
|
2021-08-30 07:43:28 -03:00
|
|
|
C_OBJECT(DeferredInvocationContext)
|
|
|
|
|
private:
|
2024-05-21 17:08:53 -03:00
|
|
|
DeferredInvocationContext() = default;
|
2021-08-30 07:43:28 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|