Files
qt-creator/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h
hjk 118b84ffd6 Use simpler Plugin::initialize() when feasible
Change-Id: I567965d266f20526bda9f823e31a04b354d53fb1
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2023-01-20 12:13:10 +00:00

35 lines
818 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <extensionsystem/iplugin.h>
namespace QmakeProjectManager {
namespace Internal {
class QmakeProjectManagerPlugin final : public ExtensionSystem::IPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QmakeProjectManager.json")
public:
~QmakeProjectManagerPlugin() final;
#ifdef WITH_TESTS
private slots:
void testQmakeOutputParsers_data();
void testQmakeOutputParsers();
void testMakefileParser_data();
void testMakefileParser();
#endif
private:
void initialize() final;
class QmakeProjectManagerPluginPrivate *d = nullptr;
};
} // namespace Internal
} // namespace QmakeProjectManager