1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3#ifndef MASM_JSGLOBALDATA_H
4#define MASM_JSGLOBALDATA_H
5
6#include "ExecutableAllocator.h"
7#include "WeakRandom.h"
8
9namespace JSC {
10
11class JSGlobalData {
12public:
13 JSGlobalData(QV4::ExecutableAllocator *realAllocator)
14 : executableAllocator(realAllocator)
15 {}
16 ExecutableAllocator executableAllocator;
17};
18
19}
20
21#endif // MASM_JSGLOBALDATA_H
22

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of qtdeclarative/src/3rdparty/masm/stubs/JSGlobalData.h