forked from qt-creator/qt-creator
Change-Id: Idbeece82d8b59f02148207b0459a76aae162bb51 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
24 lines
562 B
C++
24 lines
562 B
C++
// Copyright (C) 2019 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/runconfiguration.h>
|
|
#include <projectexplorer/runcontrol.h>
|
|
|
|
namespace WebAssembly::Internal {
|
|
|
|
class EmrunRunConfigurationFactory final : public ProjectExplorer::RunConfigurationFactory
|
|
{
|
|
public:
|
|
EmrunRunConfigurationFactory();
|
|
};
|
|
|
|
class EmrunRunWorkerFactory final : public ProjectExplorer::RunWorkerFactory
|
|
{
|
|
public:
|
|
EmrunRunWorkerFactory();
|
|
};
|
|
|
|
} // Webassembly::Internal
|