2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-03-27 08:59:57 +01:00
|
|
|
|
2016-02-02 18:26:51 +01:00
|
|
|
#pragma once
|
2013-03-27 08:59:57 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/featureprovider.h>
|
|
|
|
|
|
2014-07-29 15:15:27 +02:00
|
|
|
namespace ProjectExplorer {
|
2013-03-27 08:59:57 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-07-29 15:15:27 +02:00
|
|
|
class KitFeatureProvider : public Core::IFeatureProvider
|
2013-03-27 08:59:57 +01:00
|
|
|
{
|
2014-07-29 15:15:27 +02:00
|
|
|
public:
|
2020-06-26 13:59:38 +02:00
|
|
|
QSet<Utils::Id> availableFeatures(Utils::Id id) const override;
|
|
|
|
|
QSet<Utils::Id> availablePlatforms() const override;
|
|
|
|
|
QString displayNameForPlatform(Utils::Id id) const override;
|
2013-03-27 08:59:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2014-07-29 15:15:27 +02:00
|
|
|
} // namespace ProjectExplorer
|