forked from qt-creator/qt-creator
Slimmer file interfaces. Change-Id: I2cf846c04000eb29fe53219db9a97088b6b9a1aa Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
17 lines
387 B
C++
17 lines
387 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <projectexplorer/runcontrol.h>
|
|
|
|
namespace Android::Internal {
|
|
|
|
class AndroidQmlToolingSupportFactory final : public ProjectExplorer::RunWorkerFactory
|
|
{
|
|
public:
|
|
AndroidQmlToolingSupportFactory();
|
|
};
|
|
|
|
} // Android::Internal
|