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

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

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

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

};