aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/extensionsystem/pluginmanager/circularplugins/plugin1/plugin1.cpp
blob: b6785d6e6ca008ebb5403d12b644ff71c1b96db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "plugin1.h"

using namespace Plugin1;

bool MyPlugin1::initialize(const QStringList &arguments, QString *errorString)
{
    Q_UNUSED(arguments)
    Q_UNUSED(errorString)
    return true;
}