SkyPulse UAV V0.1
Loading...
Searching...
No Matches
decodetask.h
Go to the documentation of this file.
1#ifndef DECODETASK_H
2#define DECODETASK_H
3
4#include <QRunnable>
5#include <QByteArray>
6
7class DecodeTask : public QRunnable
8{
9
10public:
11 explicit DecodeTask(const QByteArray &data);
12 void run() override;
13
14private:
15 QByteArray data;
16 QString decode(const QByteArray &data);
17};
18
19#endif // DECODETASK_H
Definition decodetask.h:8
void run() override
Definition decodetask.cpp:9
DecodeTask(const QByteArray &data)
Definition decodetask.cpp:4