/********************************************************************* * * 文 件: MemZone.h * * 版权所有: Shanghai Baosight Software Co., Ltd. * *********************************************************************/ #ifndef _H_COLLECT_ZONE_H #define _H_COLLECT_ZONE_H #include #include #include #include using namespace baosight; class CollectZone { public: CollectZone(void); public: ~CollectZone(void); public: int dispatch(int eventNo,const ::Ice::ByteSeq&); private: vector v_memzone; BinaryTele* p_tele; map > v_zones; }; #endif