Serenity Operating System
at master 20 lines 384 B view raw
1/* 2 * Copyright (c) 2018-2020, sin-ack <sin-ack@protonmail.com> 3 * Copyright (c) 2022, the SerenityOS developers. 4 * 5 * SPDX-License-Identifier: BSD-2-Clause 6 */ 7 8#pragma once 9 10#include <LibCore/Object.h> 11 12namespace Core { 13 14class DeferredInvocationContext final : public Core::Object { 15 C_OBJECT(DeferredInvocationContext) 16private: 17 DeferredInvocationContext() = default; 18}; 19 20}