58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
|
|
/*********************************************************************
|
|||
|
|
*
|
|||
|
|
* <EFBFBD><EFBFBD> <EFBFBD><EFBFBD>: ZprxICEI.h znodeģ<EFBFBD><EFBFBD>ICE<EFBFBD>ӿ<EFBFBD>ʵ<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>
|
|||
|
|
*
|
|||
|
|
* <EFBFBD><EFBFBD>Ȩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>: Shanghai Baosight Software Co., Ltd.
|
|||
|
|
*
|
|||
|
|
*********************************************************************/
|
|||
|
|
#ifndef __ZPROXY_ICEI_h__
|
|||
|
|
#define __ZPROXY_ICEI_h__
|
|||
|
|
|
|||
|
|
#include <zcus/RestAPI.h>
|
|||
|
|
#include <proxy/MessageICE.h>
|
|||
|
|
#include <common/BasicStruct.h>
|
|||
|
|
#include <glob/ProxyMag.h>
|
|||
|
|
#include <glob/BinaryTele.h>
|
|||
|
|
|
|||
|
|
namespace baosight
|
|||
|
|
{
|
|||
|
|
/*********************************************************************
|
|||
|
|
* <EFBFBD><EFBFBD> <EFBFBD><EFBFBD>: ZprxICEI
|
|||
|
|
* <EFBFBD><EFBFBD>Ȩ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>: Shanghai Baosight Software Co., Ltd.
|
|||
|
|
*
|
|||
|
|
*********************************************************************/
|
|||
|
|
class ZprxICEI : virtual public MessageICE
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
ZprxICEI();
|
|||
|
|
~ZprxICEI();
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
virtual void SendDataShort(::Ice::Int ,
|
|||
|
|
const ::Ice::ByteSeq& ,
|
|||
|
|
::Ice::Int ,
|
|||
|
|
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&);
|
|||
|
|
|
|||
|
|
virtual void TimeNotify(::Ice::Int,
|
|||
|
|
const ::Ice::ByteSeq&,
|
|||
|
|
const Ice::Current&);
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
BinaryTele* mp_btel;
|
|||
|
|
MessageICEPrx zcache_proxy;
|
|||
|
|
MessageICEPrx zdb_proxy;
|
|||
|
|
MessageICEPrx zems_proxy;
|
|||
|
|
MessageICEPrx zmtr_proxy;
|
|||
|
|
MessageICEPrx L1snd_proxy;
|
|||
|
|
};
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endif
|