2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2019 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2019-07-12 13:40:00 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2019-08-01 17:57:52 +02:00
|
|
|
#include <projectexplorer/devicesupport/desktopdevice.h>
|
2019-07-12 13:40:00 +02:00
|
|
|
|
|
|
|
|
namespace WebAssembly {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-01-21 16:17:59 +01:00
|
|
|
class WebAssemblyDevice final : public ProjectExplorer::DesktopDevice
|
2019-07-12 13:40:00 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static ProjectExplorer::IDevice::Ptr create();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
WebAssemblyDevice();
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-21 16:17:59 +01:00
|
|
|
class WebAssemblyDeviceFactory final : public ProjectExplorer::IDeviceFactory
|
2019-07-12 13:40:00 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
WebAssemblyDeviceFactory();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace WebAssembly
|