3 Star 0 Fork 0

CyberInnova/SmartVendingMachinesUserInterface

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
My_Thread.hpp 408 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Hu 提交于 2023-06-25 11:33 . first commit
#ifndef MY_THREAD_HPP
#define MY_THREAD_HPP
#include <QThread>
class My_Thread : public QThread
{
Q_OBJECT
public:
explicit My_Thread(QObject *parent = nullptr);
void run(); // 创建一个线程
void kill(); // 将标志位设置为false, 退出线程
signals:
public slots:
private:
// 设置标志位, 判断线程是否正在执行
bool isRun;
};
#endif // MY_THREAD_HPP
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/CyberInnova/SmartVendingMachinesUserInterface.git
[email protected]:CyberInnova/SmartVendingMachinesUserInterface.git
CyberInnova
SmartVendingMachinesUserInterface
SmartVendingMachinesUserInterface
master

搜索帮助