aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/baremetal/baremetaldevice.h
blob: cce3a08a3f1a87ac5f0cd5fa99b5c6705c638aea (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
31
32
33
34
35
36
37
// 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/idevice.h>

namespace BareMetal::Internal {

class BareMetalDevice final : public ProjectExplorer::IDevice
{
public:
    using Ptr = std::shared_ptr<BareMetalDevice>;
    using ConstPtr = std::shared_ptr<const BareMetalDevice>;

    static Ptr create() { return Ptr(new BareMetalDevice); }
    ~BareMetalDevice() final;

    static QString defaultDisplayName();

    ProjectExplorer::IDeviceWidget *createWidget() final;

    QString debugServerProviderId() const;
    void setDebugServerProviderId(const QString &id);
    void unregisterDebugServerProvider(class IDebugServerProvider *provider);

private:
    void fromMap(const Utils::Store &map) final;

    BareMetalDevice();
    Utils::StringAspect m_debugServerProviderId{this};
};

void setupBareMetalDevice();

} // BareMetal::Internal