summaryrefslogtreecommitdiffstats
path: root/tests/manual/qardboard/iosdeviceorientation.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qardboard/iosdeviceorientation.h')
-rw-r--r--tests/manual/qardboard/iosdeviceorientation.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/manual/qardboard/iosdeviceorientation.h b/tests/manual/qardboard/iosdeviceorientation.h
new file mode 100644
index 000000000..756dfd9e1
--- /dev/null
+++ b/tests/manual/qardboard/iosdeviceorientation.h
@@ -0,0 +1,21 @@
+// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB).
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#ifndef IOS_DEVICEORIENTATION_H
+#define IOS_DEVICEORIENTATION_H
+
+#include <abstractdeviceorientation.h>
+
+class iOSDeviceOrientation : public AbstractDeviceOrientation
+{
+ Q_OBJECT
+public:
+ iOSDeviceOrientation(QObject* parent = 0);
+
+public slots:
+ bool start() override;
+ void stop() override;
+};
+
+
+#endif // IOS_DEVICEORIENTATION_H