sysconfigthread.h 383 Bytes
Newer Older
‘oliver.hui’'s avatar
‘oliver.hui’ committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef SYSCONFIGTHREADV2_H
#define SYSCONFIGTHREADV2_H

#include <topcore/topclassthreadabs.h>

class SysConfigThread : public TopClassThreadAbs
{
    Q_OBJECT
public:
    explicit SysConfigThread(QObject *iParent = nullptr);
    ~SysConfigThread();

protected:
    void run() override;

private:
    void saveData(const QVariantMap &iDataMap);
};

#endif // SYSCONFIGTHREADV2_H