1//
2// Copyright (c) Microsoft. All rights reserved.
3// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4//
5
6#ifndef _JITHOST
7#define _JITHOST
8
9class JitHost : public ICorJitHost
10{
11public:
12 JitHost(ICorJitHost* wrappedHost);
13
14#include "icorjithostimpl.h"
15
16private:
17 ICorJitHost* wrappedHost;
18};
19
20extern JitHost* g_ourJitHost;
21
22#endif
23