summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/DeferredInvocationContext.h
blob: b0e0e19c2b6d9691d23e39fa033a92f735b16525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2018-2020, sin-ack <sin-ack@protonmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibCore/Object.h>

namespace Core {

class DeferredInvocationContext final : public Core::Object {
    C_OBJECT(DeferredInvocationContext)
private:
    DeferredInvocationContext() { }
};

}