/********************************************************************* * * 文 件: ZtrkICEI.h Ltr模块ICE接口实现文件 * * 版权所有: Shanghai Baosight Software Co., Ltd. * * 概述: * : * : * * 版本历史 * 1.0 2010-09-02 echo_li 增加注释 * *********************************************************************/ #ifndef __LINE_TRACK_ICEI_H__ #define __LINE_TRACK_ICEI_H__ #include #include #include #include #include #include #include #include namespace baosight { /********************************************************************* * 类 名: ZtrkICEI * 版权所有: Shanghai Baosight Software Co., Ltd. * *********************************************************************/ class ZtrkICEI : virtual public MessageICE { public: ZtrkICEI(); ~ZtrkICEI(); public: /********************************************************************** * 概述: 简单数据调用接口 * 函数名: SendDataShort * **********************************************************************/ 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&); /********************************************************************** * 概述: 预留接口,用于周期性事件调用 * 函数名: TimeNotify **********************************************************************/ virtual void TimeNotify(::Ice::Int, const ::Ice::ByteSeq&, const Ice::Current&); private: ConnectionMag* pconMag; int m_buffer[1000]; private: LineTrack* mp_ztrk; ZoneTracking *mp_ltrk; SignData* mp_signdata; BinaryTele* mp_tele; }; } #endif