blob: 014c2dd4ae390516e7638c64bf4780efe2f1da4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2019 Luxoft Sweden AB
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QIFZONEDFEATUREINTERFACE_H
#define QIFZONEDFEATUREINTERFACE_H
#include <QtInterfaceFramework/QIfAbstractZonedFeature>
#include <QtInterfaceFramework/QIfFeatureInterface>
QT_BEGIN_NAMESPACE
class Q_QTINTERFACEFRAMEWORK_EXPORT QIfZonedFeatureInterface : public QIfFeatureInterface
{
Q_OBJECT
public:
explicit QIfZonedFeatureInterface(QObject *parent = nullptr);
virtual QStringList availableZones() const = 0;
Q_SIGNALS:
void availableZonesChanged(const QStringList &zones);
};
QT_END_NAMESPACE
#endif // QIFZONEDFEATUREINTERFACE_H
|