Files
qt-creator/src/plugins/android/androidruncontrol.cpp

42 lines
867 B
C++
Raw Normal View History

// Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "androidruncontrol.h"
#include "androidglobal.h"
#include "androidrunconfiguration.h"
#include "androidrunner.h"
#include <utils/utilsicons.h>
#include <projectexplorer/projectexplorerconstants.h>
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