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.

21 lines
420 B
C++

#ifndef IMPORTDIGIKEY_H
#define IMPORTDIGIKEY_H
#include <QObject>
#include <QtPlugin>
#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