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/hive/libhive/devicemanager.h
2013-09-09 16:42:53 +02:00

31 lines
483 B
C++

#ifndef DEVICEMANAGER_H
#define DEVICEMANAGER_H
#include <QObject>
#include <QSettings>
#include <QStringList>
#include <QUuid>
class DeviceManager : public QObject
{
Q_OBJECT
public:
explicit DeviceManager(QObject *parent = 0);
/* deviceType
* radio
* ...
*/
bool saveDevice(QString deviceType, QUuid uuid, QVariantMap paramters);
bool deleteDevice(QString deviceType, QUuid uuid);
signals:
public slots:
};
#endif // DEVICEMANAGER_H