1 Star 0 Fork 0

NathanJoy/EORT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
etest.h 979 Bytes
一键复制 编辑 原始数据 按行查看 历史
NathanJoy 提交于 2016-08-12 14:31 . up
/*!
* \file etest.h
* \brief 测试线程类
*
*Eort测试线程
*
* \author ningjian
* \version v1.00
* \date 二〇一四年七月十六日下午三时十四分四十八秒 星期三
*/
#ifndef ETEST_H
#define ETEST_H
#include <QThread>
#include "global.h"
#include <QProcess>
#include <QDateTime>
/// \brief 测试线程类
///
/// Eort测试线程
class ETest : public QThread
{
Q_OBJECT
public:
explicit ETest(QObject *parent = 0);
bool init();
void pause(bool ispause);
void stop();
bool Test_Result;
void add_log();
void simplification_graph(Graph_Info &graph,int times = 20);
QString Model_Name;
private:
QProcess *flow_process;
int comid; ///> 温箱com id
int shark_comid; ///> 震动com id
ChamberInfo chaminfo;
StepInfo stepinfo;
int End_Test_Section;
QDateTime last_setp_run_time;
protected:
void run();
signals:
void done();
void add_updateGraph(QString Name, double x, double y);
public slots:
};
#endif // ETEST_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/nathanjoy/EORT.git
[email protected]:nathanjoy/EORT.git
nathanjoy
EORT
EORT
master

搜索帮助