forked from qt-creator/qt-creator
Change-Id: I567965d266f20526bda9f823e31a04b354d53fb1 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
29 lines
568 B
C++
29 lines
568 B
C++
// Copyright (C) 2019 Klarälvdalens Datakonsult AB, a KDAB Group company,
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only 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;
|
|
}
|
|
|
|
void CtfVisualizerPlugin::initialize()
|
|
{
|
|
d = new CtfVisualizerPluginPrivate;
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace CtfVisualizer
|