#ifndef IMPORTDIGIKEY_H #define IMPORTDIGIKEY_H #include #include #include "inventryPartsInterface.h" //! [0] class importDigikey : public QObject, inventryPartsInterface { Q_OBJECT Q_PLUGIN_METADATA(IID "at.windesign.inventryPartsInterface" FILE "importDigiKey.json") Q_INTERFACES(inventryPartsInterface) public: QString echo(const QString &message) override; }; //! [0] #endif