mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-12 15:47:23 +02:00
25 lines
No EOL
447 B
C++
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 |