eis/inc/dao/NewMuId.h

78 lines
2.5 KiB
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.

/*********************************************************************
*
* 文 件: NewMuId.h //TODO请概述文件功能
*
* 版权所有: Shanghai Baosight Software Co., Ltd.
*
* 概述获取muid序列
*
* 版本历史
* 1.0 2011-06-10 fuxiandong //TODO请添加本次主要修改内容
* %USER%
*********************************************************************/
#ifndef NEWMUID_H_
#define NEWMUID_H_
#include <iDA/iDA.h>
using namespace iPlature;
namespace baosight
{
class NewMuId
{
private:
static iDA::Command cmd;
// public:
// NewMuId(void);
// virtual ~NewMuId(void);
public:
/**********************************************************************
* 概述: 获取muid和basid
* 函数名: GetNewMuId
* 返回值: int //TODO:返回值描述
* 参数列表: 参数类型 取值范围 描述
* muId : [IN/OUT] long * //TODO:参数取值范围 <//TODO:参数描述>
* basId : [IN/OUT] short * //TODO:参数取值范围 <//TODO:参数描述>
*
* 版本历史
* 1.0 2011-06-10 fuxiandong //TODO请添加本次主要修改内容
*
**********************************************************************/
static int GetNewMuId( long* muId , short* basId );
public:
/**********************************************************************
* 概述: 获取muid
* 函数名: GetNewMuId
* 返回值: int //TODO:返回值描述
* 参数列表: 参数类型 取值范围 描述
* muId : [IN/OUT] long * //TODO:参数取值范围 <//TODO:参数描述>
*
* 版本历史
* 1.0 2011-06-10 fuxiandong //TODO请添加本次主要修改内容
*
**********************************************************************/
static int GetNewMuId( long* muId );
public:
/**********************************************************************
* 概述: 获取basid
* 函数名: GetNewBasId
* 返回值: int //TODO:返回值描述
* 参数列表: 参数类型 取值范围 描述
* basId : [IN/OUT] short * //TODO:参数取值范围 <//TODO:参数描述>
*
* 版本历史
* 1.0 2011-06-10 fuxiandong //TODO请添加本次主要修改内容
*
**********************************************************************/
static int GetNewBasId( short* basId );
};
}
#endif //NEWMEID_H