mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-10 12:18:59 +02:00
25 lines
603 B
C++
25 lines
603 B
C++
//
|
|
// DataServerScriptingInterface.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 1/20/2014.
|
|
// Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __hifi__DataServerScriptingInterface__
|
|
#define __hifi__DataServerScriptingInterface__
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtCore/QUuid>
|
|
#include <QtScript/QScriptValue>
|
|
|
|
class DataServerScriptingInterface : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
DataServerScriptingInterface();
|
|
|
|
public slots:
|
|
void setValueForKey(const QString& key, const QString& value);
|
|
};
|
|
|
|
#endif /* defined(__hifi__DataServerScriptingInterface__) */
|