#ifndef _card_message_handle_h_ #define _card_message_handle_h_ //一张卡一个ct的所有分站不同天线的信息 #include struct card_location_base; struct one_ct_message_handle; struct message_locinfo; struct message_tdoa_locinfo; struct message_pdoa_locinfo; struct task; template struct zloop; struct card_message_handle { card_location_base*m_card; std::array m_ct_list; // 用于tof,pdoa card_message_handle(card_location_base*card); ~card_message_handle(); void on_message(zloop* loop,const message_locinfo& loc,bool is_history); void on_message(zloop* loop, const message_tdoa_locinfo& loc, bool is_history); void on_message(zloop* loop, const message_pdoa_locinfo& loc, bool is_history); }; #endif