forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV8ScriptImpl.h
More file actions
31 lines (21 loc) · 720 Bytes
/
Copy pathV8ScriptImpl.h
File metadata and controls
31 lines (21 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
namespace Microsoft {
namespace ClearScript {
namespace V8 {
//-------------------------------------------------------------------------
// V8ScriptImpl
//-------------------------------------------------------------------------
private ref class V8ScriptImpl sealed : V8Script
{
public:
V8ScriptImpl(ClearScript::UniqueDocumentInfo^ documentInfo, V8ScriptHolder* pHolder);
SharedPtr<V8ScriptHolder> GetHolder();
~V8ScriptImpl();
!V8ScriptImpl();
private:
Object^ m_gcLock;
SharedPtr<V8ScriptHolder>* m_pspHolder;
};
}}}