forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
32 lines
692 B
C++
32 lines
692 B
C++
// Copyright (C) 2019 Klarälvdalens Datakonsult AB, a KDAB Group company,
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
#include "ctfvisualizerplugin.h"
|
|
|
|
#include "ctfvisualizertool.h"
|
|
|
|
namespace CtfVisualizer {
|
|
namespace Internal {
|
|
|
|
class CtfVisualizerPluginPrivate
|
|
{
|
|
public:
|
|
CtfVisualizerTool profilerTool;
|
|
};
|
|
|
|
CtfVisualizerPlugin::~CtfVisualizerPlugin()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
bool CtfVisualizerPlugin::initialize(const QStringList &arguments, QString *errorString)
|
|
{
|
|
Q_UNUSED(arguments)
|
|
Q_UNUSED(errorString)
|
|
|
|
d = new CtfVisualizerPluginPrivate;
|
|
return true;
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace CtfVisualizer
|