summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/include/LibLsp/JsonRpc/GCThreadContext.h
blob: 6c9f9c1cbb31a26c17ae97275d954badcaee2928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#if defined(LSPCPP_USEGC)
#define GC_THREADS
#include <gc.h>
#endif

class GCThreadContext
{
public:
    GCThreadContext();
    ~GCThreadContext();

private:
#if defined(LSPCPP_USEGC)
    GC_stack_base gsb;
#endif

};