This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2013-12-30 20:15:59 +01:00

21 lines
280 B
C++

#ifndef RFSWITCH_H
#define RFSWITCH_H
#include "deviceplugin.h"
class RfSwitch : public DevicePlugin
{
Q_OBJECT
public:
explicit RfSwitch(QObject *parent = 0);
QList<DeviceClass> supportedDevices() const override;
signals:
public slots:
};
#endif // RFSWITCH_H