1
0

card.h 285 B

1234567891011121314151617
  1. #ifndef _CARD_HPP_
  2. #define _CARD_HPP_
  3. namespace ev { struct dynamic_loop; }
  4. struct message_locinfo;
  5. struct card_list
  6. {
  7. virtual void on_message(ev::dynamic_loop&loop, const message_locinfo&loc, bool is_history)=0;
  8. virtual ~card_list(){}
  9. static card_list *instance();
  10. };
  11. #endif