DeferredInvocationContext.h 327 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2018-2020, sin-ack <sin-ack@protonmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibCore/Object.h>
  8. namespace Core {
  9. class DeferredInvocationContext final : public Core::Object {
  10. C_OBJECT(DeferredInvocationContext)
  11. private:
  12. DeferredInvocationContext() { }
  13. };
  14. }