Files
qt-creator/src/plugins/qmakeprojectmanager/qmakeprojectmanagerplugin.h

35 lines
818 B
C
Raw Normal View History

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