eis/inc/eqpalg/EqpAlgICEI.h

100 lines
3.0 KiB
C
Raw Permalink Normal View History

/*********************************************************************
*
* : EqpAlgICEI.h ICE接口文件
*
* : Shanghai Baosight Software Co., Ltd.
*
*********************************************************************/
#ifndef __EQ_ALG_ICEI_H__
#define __EQ_ALG_ICEI_H__
#include <proxy/MessageICE.h>
#include <dao/DbStandardDBAX.h>
#include <common/L2Event.h>
#include <eqpalg/AlgorithmManager.h>
/* Equipment object .h file define here */
#include <eqpalg/AlgorithmBase.h>
namespace baosight
{
/*********************************************************************
* : EqpAlgICEI
* : Shanghai Baosight Software Co., Ltd.
* :ice接口实现
*
*********************************************************************/
class EqpAlgICEI : virtual public MessageICE
{
public:
EqpAlgICEI();
virtual ~EqpAlgICEI();
/**********************************************************************
* :
* SendDataShort
* void
* :
* : ::Ice::Int
* &: const ::Ice::ByteSeq
* : ::Ice::Int
* &: const Ice::Current
*
**********************************************************************/
virtual void SendDataShort(::Ice::Int ,
const ::Ice::ByteSeq& ,
::Ice::Int ,
const Ice::Current&);
/**********************************************************************
* :
* SendDataLong
* void
* :
* : ::Ice::Int
* &: const ::Ice::ByteSeq
* : ::Ice::Int
* &: const ::std::string
* &: const ::std::string
* &: const ::std::string
* &: const Ice::Current
*
**********************************************************************/
virtual void SendDataLong(::Ice::Int,
const ::Ice::ByteSeq&,
::Ice::Int,
const ::std::string&,
const ::std::string&,
const ::std::string&,
const Ice::Current&);
/**********************************************************************
* :
* TimeNotify
* void
* :
* : ::Ice::Int
* &: const ::Ice::ByteSeq
* &: const Ice::Current
*
**********************************************************************/
virtual void TimeNotify(::Ice::Int,
const ::Ice::ByteSeq&,
const Ice::Current&);
private:
AlgorithmManager* mp_algmag;
};
}
#endif