45 lines
858 B
C++
45 lines
858 B
C++
/*********************************************************************
|
||
*
|
||
* 文 件: MatUnit.h 钢卷信息
|
||
*
|
||
* 版权所有: Shanghai Baosight Software Co., Ltd.
|
||
*
|
||
* 概述://TODO请添加本文件包含功能详细描述
|
||
* ://TODO
|
||
* ://TODO
|
||
*
|
||
* 版本历史
|
||
* 1.0 2011-06-10 fuxiandong //TODO请添加本次主要修改内容
|
||
* %USER%
|
||
*********************************************************************/
|
||
#ifndef MATUNIT_H
|
||
#define MATUNIT_H
|
||
|
||
#include <string.h>
|
||
#include <iostream>
|
||
#include <glob/GlobDefine.h>
|
||
|
||
using namespace std;
|
||
using namespace baosight;
|
||
|
||
class MatUnit
|
||
{
|
||
public:
|
||
MatUnit();
|
||
virtual ~MatUnit();
|
||
|
||
public:
|
||
bool haveCoil();
|
||
//设置每个MECODE的状态
|
||
int setStatus(const MU_CODE& meCode,int status);
|
||
|
||
|
||
public:
|
||
MU_CODE meCode;
|
||
int innerId;
|
||
int seqNo;
|
||
char exitCoilId[21];
|
||
int combinFlag;
|
||
|
||
};
|
||
#endif |