| 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); |
| 13 | |
| 14 | #include "icorjithostimpl.h" |
| 15 | |
| 16 | private: |
| 17 | ICorJitHost* wrappedHost; |
| 18 | }; |
| 19 | |
| 20 | extern JitHost* g_ourJitHost; |
| 21 | |
| 22 | #endif |
| 23 |