summaryrefslogtreecommitdiffstats
path: root/tests/manual/qardboard/iosdeviceorientation.h
blob: 756dfd9e1e3cadcb6d5015c762d916edbcfd7b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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