blob: ca16c1ab7ec9fc32c23ee599807bd9eab225ee31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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/runcontrol.h>
namespace BareMetal::Internal {
class BareMetalDebugSupportFactory final : public ProjectExplorer::RunWorkerFactory
{
public:
BareMetalDebugSupportFactory();
};
} // BareMetal::Internal
|