You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
489 B
C++
30 lines
489 B
C++
#include "cimportdigikey.h"
|
|
#include "csearchdialog.h"
|
|
|
|
//LM741CNNS/NOPB-ND
|
|
|
|
#define CLIENT_ID "ZpFbDx5TQEltK8SoBUFx0iwCyITCWsnH"
|
|
#define CLIENT_SECRET "Oklw6XsXaPu2h6cT"
|
|
|
|
|
|
QString cImportDigikey::pluginName()
|
|
{
|
|
return(PLUGIN_NAME);
|
|
}
|
|
|
|
qint16 cImportDigikey::pluginVersion()
|
|
{
|
|
return(PLUGIN_VERSION);
|
|
}
|
|
|
|
void cImportDigikey::test()
|
|
{
|
|
}
|
|
|
|
bool cImportDigikey::showSearch(QWidget* parent)
|
|
{
|
|
cSearchDialog* searchDialog = new cSearchDialog(parent);
|
|
searchDialog->show();
|
|
return(true);
|
|
}
|