aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androiddebugsupport.h
blob: 9d013ad11c8d6d339176b7c0bd2a7055b6803008 (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
// Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "androidrunner.h"
#include <debugger/debuggerruncontrol.h>

namespace Android {
namespace Internal {

class AndroidDebugSupport : public Debugger::DebuggerRunTool
{
    Q_OBJECT

public:
    AndroidDebugSupport(ProjectExplorer::RunControl *runControl,
                        const QString &intentName = QString());

    void start() override;
    void stop() override;

private:
    AndroidRunner *m_runner = nullptr;
};

} // namespace Internal
} // namespace Android