2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 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
|
2016-01-15 14:57:40 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
|
|
2023-01-06 15:54:09 +01:00
|
|
|
namespace Ios::Internal {
|
2013-04-25 16:02:17 +02:00
|
|
|
|
2020-01-29 04:15:25 +03:00
|
|
|
class IosPlugin final : public ExtensionSystem::IPlugin
|
2013-04-25 16:02:17 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Ios.json")
|
|
|
|
|
|
|
|
|
|
public:
|
2018-02-08 09:24:22 +01:00
|
|
|
IosPlugin() = default;
|
|
|
|
|
~IosPlugin() final;
|
2013-04-25 16:02:17 +02:00
|
|
|
|
2016-06-29 19:35:23 +03:00
|
|
|
private:
|
2023-01-20 12:28:36 +01:00
|
|
|
void initialize() final;
|
2018-02-08 09:24:22 +01:00
|
|
|
|
|
|
|
|
class IosPluginPrivate *d = nullptr;
|
2013-04-25 16:02:17 +02:00
|
|
|
};
|
|
|
|
|
|
2023-01-06 15:54:09 +01:00
|
|
|
} // Ios::Internal
|