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.
powersync-core/libhive/deviceplugin.h
2013-12-30 20:09:52 +01:00

20 lines
293 B
C++

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