mirror of
https://github.com/overte-org/overte.git
synced 2025-07-03 12:29:41 +02:00
16 lines
457 B
C
16 lines
457 B
C
//
|
|
// VariantMapToScriptValue.h
|
|
// libraries/shared/src/
|
|
//
|
|
// Created by Brad Hefta-Gaub on 12/6/13.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include <QVariant>
|
|
#include <QScriptValue>
|
|
#include <QScriptEngine>
|
|
|
|
QScriptValue variantMapToScriptValue(QVariantMap& variantMap, QScriptEngine& scriptEngine);
|