mirror of
https://github.com/overte-org/overte.git
synced 2025-07-11 04:58:34 +02:00
36 lines
845 B
C++
36 lines
845 B
C++
//
|
|
// StackTestScriptingInterface.h
|
|
// libraries/script-engine/src
|
|
//
|
|
// Created by Clement Brisset on 7/25/18.
|
|
// Copyright 2018 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
|
|
//
|
|
|
|
/// @addtogroup ScriptEngine
|
|
/// @{
|
|
|
|
#pragma once
|
|
|
|
#ifndef hifi_StackTestScriptingInterface_h
|
|
#define hifi_StackTestScriptingInterface_h
|
|
|
|
#include <QObject>
|
|
|
|
class StackTestScriptingInterface : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
StackTestScriptingInterface(QObject* parent = nullptr) : QObject(parent) {}
|
|
|
|
Q_INVOKABLE void pass(QString message = QString());
|
|
Q_INVOKABLE void fail(QString message = QString());
|
|
|
|
Q_INVOKABLE void exit(QString message = QString());
|
|
};
|
|
|
|
#endif // hifi_StackTestScriptingInterface_h
|
|
|
|
/// @}
|