initial commit

This commit is contained in:
2023-05-29 10:08:17 +02:00
parent 5073d69d72
commit 9b62a0cf6b
24 changed files with 414 additions and 25 deletions
+20
View File
@@ -0,0 +1,20 @@
#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);
}