DeferredInvocationContext.h 398 B

1234567891011121314151617181920
  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. #pragma once
  8. #include <LibCore/EventReceiver.h>
  9. namespace Core {
  10. class DeferredInvocationContext final : public Core::EventReceiver {
  11. C_OBJECT(DeferredInvocationContext)
  12. private:
  13. DeferredInvocationContext() = default;
  14. };
  15. }