aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/baremetal/baremetaldebugsupport.h
blob: 161ea346bec08c6f59991c74958bb128ad5cb254 (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
// Copyright (C) 2016 Denis Shienkov <denis.shienkov@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <debugger/debuggerruncontrol.h>

namespace ProjectExplorer {
class RunControl;
}

namespace BareMetal {
namespace Internal {

class IDebugServerProvider;

// BareMetalDebugSupport

class BareMetalDebugSupport final : public Debugger::DebuggerRunTool
{
    Q_OBJECT

public:
    explicit BareMetalDebugSupport(ProjectExplorer::RunControl *runControl);

private:
    void start() final;
};

} // namespace Internal
} // namespace BareMetal