blob: 520d0fb5355ffd63c4cdbc38c70ca464d9a136ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// 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/devicesupport/desktopdevice.h>
#include <projectexplorer/devicesupport/idevicefactory.h>
namespace WebAssembly {
namespace Internal {
class WebAssemblyDevice final : public ProjectExplorer::DesktopDevice
{
public:
static ProjectExplorer::IDevice::Ptr create();
private:
WebAssemblyDevice();
};
class WebAssemblyDeviceFactory final : public ProjectExplorer::IDeviceFactory
{
public:
WebAssemblyDeviceFactory();
};
} // namespace Internal
} // namespace WebAssembly
|