27 lines
567 B
C++
27 lines
567 B
C++
#include "CWaveAnalyzePlugin.h"
|
|
#include "CWaveAnalyzeWidget.h"
|
|
|
|
CWaveAnalyzePlugin::CWaveAnalyzePlugin(QObject *parent)
|
|
{
|
|
|
|
}
|
|
|
|
CWaveAnalyzePlugin::~CWaveAnalyzePlugin()
|
|
{
|
|
|
|
}
|
|
|
|
bool CWaveAnalyzePlugin::createWidget(QWidget *parent, bool editMode, QWidget **widget, IPluginWidget **workTicketWidget, QVector<void *> ptrVec)
|
|
{
|
|
Q_UNUSED(ptrVec)
|
|
CWaveAnalyzeWidget *pWidget = new CWaveAnalyzeWidget(parent, editMode);
|
|
*widget = (QWidget *)pWidget;
|
|
*workTicketWidget = (IPluginWidget *)pWidget;
|
|
return true;
|
|
}
|
|
|
|
void CWaveAnalyzePlugin::release()
|
|
{
|
|
|
|
}
|