3 Star 0 Fork 1

yjwx0017/qlocate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
updatedbthread.h 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
yjwx0017 提交于 2021-01-21 22:56 . Follow qt code style
#ifndef UPDATEDBTHREAD_H
#define UPDATEDBTHREAD_H
#include <QThread>
class UpdatedbWorker;
class UpdatedbThread : public QThread
{
Q_OBJECT
public:
UpdatedbThread(QObject *parent = 0);
~UpdatedbThread();
UpdatedbWorker* worker();
private:
UpdatedbWorker *mWorker = nullptr;
};
class UpdatedbWorker : public QObject
{
Q_OBJECT
public:
UpdatedbWorker();
~UpdatedbWorker();
signals:
void updating();
void finished();
void error(const QString &msg);
public slots:
void updatedb();
};
#endif // UPDATEDBTHREAD_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yjwx0017/qlocate.git
git@gitee.com:yjwx0017/qlocate.git
yjwx0017
qlocate
qlocate
master

搜索帮助