12 Star 48 Fork 15

幽灵代码 / 跳一跳辅助qt版

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cworkthread.h 425 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef CWORKTHREAD_H
#define CWORKTHREAD_H
#include <QThread>
#include <QDialog>
class CWorkThread : public QThread
{
Q_OBJECT
public:
CWorkThread(QDialog *parent = 0);
public slots:
void start();
void stop();
// QThread interface
protected:
bool oneStep();
int getPressTime(double iDistance);
void run();
private:
bool m_isRun;
};
#endif // CWORKTHREAD_H
C++
1
https://gitee.com/ghostcode/TiaoYiTiaoFuZhuqtBan.git
git@gitee.com:ghostcode/TiaoYiTiaoFuZhuqtBan.git
ghostcode
TiaoYiTiaoFuZhuqtBan
跳一跳辅助qt版
master

搜索帮助