test_sdk/hw/d001/d001.h

27 lines
499 B
C
Raw Permalink Normal View History

#ifndef D001_H
#define D001_H
#include <QObject>
#include "../gtl_hardware_interface.h"
#include "device_d001.h"
class d001 : public QObject, public gtl::hardware_interface
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "gtlab.hardware" FILE "d001.json")
Q_INTERFACES(gtl::hardware_interface)
public:
explicit d001(QObject *parent = nullptr);
virtual QString id() const {return "d001";}
virtual gtl::hw::device* create_device(QObject* parent = NULL);
private:
};
#endif // D001_H