28 lines
438 B
C++
28 lines
438 B
C++
#include "cimportmouser.h"
|
|
#include "csearchdialog.h"
|
|
|
|
|
|
QString cImportMouser::pluginName()
|
|
{
|
|
return(PLUGIN_NAME);
|
|
}
|
|
|
|
qint16 cImportMouser::pluginVersion()
|
|
{
|
|
return(PLUGIN_VERSION);
|
|
}
|
|
|
|
void cImportMouser::test()
|
|
{
|
|
}
|
|
|
|
bool cImportMouser::showSearch(QWidget* parent)
|
|
{
|
|
cSearchDialog* searchDialog = new cSearchDialog(parent);
|
|
searchDialog->show();
|
|
|
|
// doSearchByKeyword("lm741");
|
|
// doSearchByPartNumber("595-NE555P");
|
|
return(true);
|
|
}
|