aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/baremetal/baremetaldeviceconfigurationwizard.h
blob: 8290de81bae823c87e8932b82998045e4cf43583 (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) 2016 Tim Sander <tim@krieglstein.org>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <projectexplorer/devicesupport/idevicefwd.h>
#include <utils/wizard.h>

namespace BareMetal {
namespace Internal {

class BareMetalDeviceConfigurationWizardSetupPage;

// BareMetalDeviceConfigurationWizard

class BareMetalDeviceConfigurationWizard final : public Utils::Wizard
{
    Q_OBJECT

public:
    explicit BareMetalDeviceConfigurationWizard(QWidget *parent = nullptr);

    ProjectExplorer::IDevicePtr device() const;

private:
    BareMetalDeviceConfigurationWizardSetupPage *m_setupPage = nullptr;
};

} // namespace Internal
} // namespace BareMetal