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.
29 lines
529 B
C++
29 lines
529 B
C++
#ifndef CIMPORTDIGIKEY_H
|
|
#define CIMPORTDIGIKEY_H
|
|
|
|
|
|
#include <QObject>
|
|
#include <QtPlugin>
|
|
#include "cimportinterface.h"
|
|
|
|
#define PLUGIN_NAME "Import DigiKey"
|
|
#define PLUGIN_VERSION 1
|
|
|
|
|
|
class cImportDigikey : public QObject, cImportInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "at.windesign.importInterface" FILE "importDigiKey.json")
|
|
Q_INTERFACES(cImportInterface)
|
|
|
|
public:
|
|
QString pluginName() override;
|
|
qint16 pluginVersion() override;
|
|
|
|
void test() override;
|
|
|
|
bool showSearch(QWidget* parent) override;
|
|
};
|
|
|
|
#endif
|