summaryrefslogtreecommitdiff
path: root/src/plugins/saferenderer/saferenderer.cpp
blob: 115b7c8728b5ed6e94fa44c9b96ef89ecf93e787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "saferenderer.h"

#include <projectexplorer/jsonwizard/jsonwizardfactory.h>

namespace SafeRenderer::Internal {

SafeRendererPlugin::SafeRendererPlugin()
{
}

SafeRendererPlugin::~SafeRendererPlugin()
{
}

bool SafeRendererPlugin::initialize(const QStringList &arguments, QString *errorString)
{
    Q_UNUSED(arguments)
    Q_UNUSED(errorString)

    // Add Qt Creator project wizard path
    ProjectExplorer::JsonWizardFactory::addWizardPath(":/saferenderer/wizards/");

    return true;
}

} // namespace SafeRenderer::Internal