#ifndef DEVICEPLUGIN_H #define DEVICEPLUGIN_H #include "deviceclass.h" #include class DevicePlugin: public QObject { Q_OBJECT public: DevicePlugin(QObject *parent = 0); virtual ~DevicePlugin(); virtual QList supportedDevices() const = 0; }; #endif