summaryrefslogtreecommitdiffstats
path: root/old/libqsystemtest/customtestcontrol.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/libqsystemtest/customtestcontrol.h')
-rw-r--r--old/libqsystemtest/customtestcontrol.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/old/libqsystemtest/customtestcontrol.h b/old/libqsystemtest/customtestcontrol.h
new file mode 100644
index 0000000..0cad4af
--- /dev/null
+++ b/old/libqsystemtest/customtestcontrol.h
@@ -0,0 +1,23 @@
+#ifndef CUSTOMTESTCONTROL_H
+#define CUSTOMTESTCONTROL_H
+
+#include "testcontrol.h"
+
+namespace Qt4Test {
+class CustomTestControl : public TestControl
+{
+ Q_OBJECT
+public:
+ CustomTestControl();
+ virtual ~CustomTestControl();
+
+ bool deviceConfiguration( QString &reply );
+
+ bool startApplication( const QString &application, const QStringList &arguments,
+ bool styleQtUITest, const QStringList &environment, QString &reply );
+ bool killApplication( const QString &application, QString &reply );
+};
+
+}
+
+#endif // CUSTOMTESTCONTROL_H