aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/macros/macrosplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/macros/macrosplugin.h')
-rw-r--r--src/plugins/macros/macrosplugin.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/plugins/macros/macrosplugin.h b/src/plugins/macros/macrosplugin.h
deleted file mode 100644
index da7daf3ec60..00000000000
--- a/src/plugins/macros/macrosplugin.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (C) 2016 Nicolas Arnaud-Cormos
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#pragma once
-
-#include <extensionsystem/iplugin.h>
-
-namespace Macros {
-namespace Internal {
-
-class MacrosPlugin final : public ExtensionSystem::IPlugin
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Macros.json")
-
-public:
- ~MacrosPlugin() final;
-
- void initialize() final;
-
-private:
- class MacrosPluginPrivate *d = nullptr;
-};
-
-} // namespace Internal
-} // namespace Macros