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 | |
9 | class JitHost : public ICorJitHost |
10 | { |
11 | public: |
12 | JitHost(ICorJitHost* wrappedHost, MethodContext* methodContext); |
13 | |
14 | void setMethodContext(MethodContext* methodContext); |
15 | |
16 | #include "icorjithostimpl.h" |
17 | |
18 | private: |
19 | ICorJitHost* wrappedHost; |
20 | MethodContext* mc; |
21 | }; |
22 | |
23 | extern JitHost* g_ourJitHost; |
24 | |
25 | #endif |
26 | |