overte-HifiExperiments/interface/src/ui/TestingDialog.h
2016-12-03 19:34:38 -08:00

25 lines
No EOL
447 B
C++

#ifndef hifi_TestingDialog_h
#define hifi_TestingDialog_h
#include <QDialog>
const QString windowLabel = "Testing Dialog";
const QString testRunnerRelativePath = "/scripts/developer/tests/bindUnitTest.js";
class TestingDialog : public QDialog {
Q_OBJECT
public:
TestingDialog(QWidget* parent);
~TestingDialog();
signals:
void closed();
public slots:
void reject() override;
protected:
void closeEvent(QCloseEvent*) override;
};
#endif