// Copyright (C) 2020 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include #include namespace WebAssembly { namespace Internal { class WebAssemblyQtVersion : public QtSupport::QtVersion { public: WebAssemblyQtVersion(); QString description() const override; QSet targetDeviceTypes() const override; bool isValid() const override; QString invalidReason() const override; static const QVersionNumber &minimumSupportedQtVersion(); static bool isQtVersionInstalled(); static bool isUnsupportedQtVersionInstalled(); }; class WebAssemblyQtVersionFactory : public QtSupport::QtVersionFactory { public: WebAssemblyQtVersionFactory(); }; } // namespace Internal } // namespace WebAssembly