eis/inc/cold/MatUnit.h

45 lines
858 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*********************************************************************
*
* 文 件: 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