summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/qardboard/iosdeviceorientation.h
blob: a4e9a3de826172300454aa96ca2c92be57ac642e (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 BSD-3-Clause

#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