aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt/qdbqtversion.h
blob: 100ad32f29721eba5413e0b8e9e0d313d6cdac7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <qtsupport/baseqtversion.h>

namespace Qdb {
namespace Internal {

class QdbQtVersion : public QtSupport::QtVersion
{
public:
    QdbQtVersion() = default;
    ~QdbQtVersion() = default;

    QString description() const final;
    QSet<Utils::Id> targetDeviceTypes() const final;
};

} // namespace Internal
} // namespace Qdb