syscommugroupthread.h 432 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 21
#ifndef SYSCOMMUGROUPTHREAD_H
#define SYSCOMMUGROUPTHREAD_H

#include <topcore/topclassthreadabs.h>

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

protected:
    void run() override;

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

#endif // SYSCOMMUGROUPTHREAD_H