summaryrefslogtreecommitdiffstats
path: root/configuredivecomputerthreads.h
diff options
context:
space:
mode:
Diffstat (limited to 'configuredivecomputerthreads.h')
-rw-r--r--configuredivecomputerthreads.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/configuredivecomputerthreads.h b/configuredivecomputerthreads.h
new file mode 100644
index 000000000..db54db460
--- /dev/null
+++ b/configuredivecomputerthreads.h
@@ -0,0 +1,40 @@
+#ifndef CONFIGUREDIVECOMPUTERTHREADS_H
+#define CONFIGUREDIVECOMPUTERTHREADS_H
+
+#include <QObject>
+#include <QThread>
+#include <QVariant>
+#include "libdivecomputer.h"
+#include <QDateTime>
+#include "devicedetails.h"
+
+class ReadSettingsThread : public QThread {
+ Q_OBJECT
+public:
+ ReadSettingsThread(QObject *parent, device_data_t *data);
+ virtual void run();
+ QString result;
+ QString lastError;
+signals:
+ void error(QString err);
+ void devicedetails(DeviceDetails *newDeviceDetails);
+private:
+ device_data_t *m_data;
+};
+
+class WriteSettingsThread : public QThread {
+ Q_OBJECT
+public:
+ WriteSettingsThread(QObject *parent, device_data_t *data);
+ void setDeviceDetails(DeviceDetails *details);
+ virtual void run();
+ QString result;
+ QString lastError;
+signals:
+ void error(QString err);
+private:
+ device_data_t *m_data;
+ DeviceDetails *m_deviceDetails;
+};
+
+#endif // CONFIGUREDIVECOMPUTERTHREADS_H