aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/copilot/copilotplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/copilot/copilotplugin.h')
-rw-r--r--src/plugins/copilot/copilotplugin.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/plugins/copilot/copilotplugin.h b/src/plugins/copilot/copilotplugin.h
deleted file mode 100644
index 9f709b2a101..00000000000
--- a/src/plugins/copilot/copilotplugin.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (C) 2023 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#pragma once
-
-#include "copilotclient.h"
-
-#include <extensionsystem/iplugin.h>
-
-#include <QPointer>
-
-namespace Copilot {
-namespace Internal {
-
-class CopilotPlugin : public ExtensionSystem::IPlugin
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Copilot.json")
-
-public:
- void initialize() override;
- bool delayedInitialize() override;
- void restartClient();
- ShutdownFlag aboutToShutdown() override;
-
-private:
- QPointer<CopilotClient> m_client;
-};
-
-} // namespace Internal
-} // namespace Copilot