2022-08-19 15:59:36 +02:00
|
|
|
// 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
|
2019-08-29 11:45:45 +02:00
|
|
|
#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
|