// Copyright (C) 2016 BogDan Vatra // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 #include "androidruncontrol.h" #include "androidglobal.h" #include "androidrunconfiguration.h" #include "androidrunner.h" #include #include using namespace ProjectExplorer; namespace Android { namespace Internal { AndroidRunSupport::AndroidRunSupport(RunControl *runControl, const QString &intentName) : AndroidRunner(runControl, intentName) { runControl->setIcon(Utils::Icons::RUN_SMALL_TOOLBAR); } AndroidRunSupport::~AndroidRunSupport() { stop(); } void AndroidRunSupport::start() { AndroidRunner::start(); } void AndroidRunSupport::stop() { AndroidRunner::stop(); } } // namespace Internal } // namespace Android