21 lines
335 B
C++
21 lines
335 B
C++
#include "cimportmouser.h"
|
|
#include "csearchdialog.h"
|
|
|
|
|
|
QString cImportMouser::pluginName()
|
|
{
|
|
return(PLUGIN_NAME);
|
|
}
|
|
|
|
qint16 cImportMouser::pluginVersion()
|
|
{
|
|
return(PLUGIN_VERSION);
|
|
}
|
|
|
|
bool cImportMouser::showSearch(QWidget* parent)
|
|
{
|
|
cSearchDialog* searchDialog = new cSearchDialog(parent);
|
|
searchDialog->show();
|
|
return(true);
|
|
}
|