Files
qt-creator/plugins/axivion/axivionplugin.h
Christian Stenger 82bd1de936 Provide first query mechanism
Allow to link current project to a dashboard project.

Change-Id: If73caab0e26b4b5151dbab1a6c9db72857fddacc
Reviewed-by: David Schulz <david.schulz@qt.io>
2023-01-05 11:51:59 +00:00

40 lines
902 B
C++

// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
#pragma once
#include <extensionsystem/iplugin.h>
namespace ProjectExplorer { class Project; }
namespace Axivion::Internal {
class AxivionSettings;
class AxivionProjectSettings;
class AxivionPlugin final : public ExtensionSystem::IPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Axivion.json")
public:
AxivionPlugin();
~AxivionPlugin() final;
static AxivionPlugin *instance();
static AxivionSettings *settings();
static AxivionProjectSettings *projectSettings(ProjectExplorer::Project *project);
static bool handleCertificateIssue();
signals:
void settingsChanged();
private:
bool initialize(const QStringList &arguments, QString *errorMessage) final;
void extensionsInitialized() final {}
};
} // Axivion::Internal