mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 16:42:08 +02:00
25 lines
746 B
C
25 lines
746 B
C
//
|
|
// VariantMapToScriptValue.h
|
|
// libraries/shared/src/
|
|
//
|
|
// Created by Brad Hefta-Gaub on 12/6/13.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
// Copyright 2023 Overte e.V.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
/// @addtogroup ScriptEngine
|
|
/// @{
|
|
|
|
#include <QVariant>
|
|
#include "ScriptValue.h"
|
|
#include "ScriptEngine.h"
|
|
|
|
ScriptValue variantToScriptValue(QVariant& qValue, ScriptEngine& scriptEngine);
|
|
ScriptValue variantMapToScriptValue(QVariantMap& variantMap, ScriptEngine& scriptEngine);
|
|
ScriptValue variantListToScriptValue(QVariantList& variantList, ScriptEngine& scriptEngine);
|
|
|
|
/// @}
|