1
0

card_message_handle.h 524 B

1234567891011121314151617181920212223242526
  1. #ifndef _card_message_handle_h_
  2. #define _card_message_handle_h_
  3. //一张卡一个ct的所有不同天线的信息
  4. struct card_location_base;
  5. struct one_ct_message_handle;
  6. struct message_locinfo;
  7. struct task;
  8. template<typename NT> struct zloop;
  9. struct card_message_handle
  10. {
  11. card_location_base*m_card;
  12. std::array<one_ct_message_handle*,16> m_ct_list;
  13. card_message_handle(card_location_base*card);
  14. ~card_message_handle();
  15. void on_message(zloop<task*> * loop,const message_locinfo&loc,bool is_history);
  16. };
  17. #endif