blob: a708e679e6195596d537ea7b57199bf7c6ae51cc (
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
|
// Copyright (C) 2016 Tim Sander <tim@krieglstein.org>
// Copyright (C) 2016 Denis Shienkov <denis.shienkov@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/devicesupport/idevicewidget.h>
namespace BareMetal::Internal {
class DebugServerProviderChooser;
class BareMetalDeviceConfigurationWidget final
: public ProjectExplorer::IDeviceWidget
{
public:
explicit BareMetalDeviceConfigurationWidget(const ProjectExplorer::IDevicePtr &deviceConfig);
private:
void debugServerProviderChanged();
void updateDeviceFromUi() final;
DebugServerProviderChooser *m_debugServerProviderChooser = nullptr;
};
} // BareMetal::Internal
|