summaryrefslogtreecommitdiffstats
path: root/examples/sensors/grue/qmlgruesensor.h
blob: 9ee14568533a74c7ca6661e3bab36a254dca0d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef QMLGRUESENSOR_H
#define QMLGRUESENSOR_H

#include <QtQml/qqml.h>
#include <QtSensors/qsensor.h>

class QMLGrueSensor : public QSensor
{
    Q_OBJECT
    QML_ELEMENT

public:
    QMLGrueSensor();
};

#endif // QMLGRUESENSOR_H