1234567891011121314151617181920212223 |
- #ifndef _CARD_HPP_
- #define _CARD_HPP_
- #include <message.h>
- //#include <ev++.h>
- #include "write-copy.h"
- struct card_location_base;
- struct task;
- template<typename T> struct zloop;
- struct card_list:single_base<card_list,int64_t,std::shared_ptr<card_location_base>>
- {
- virtual void on_message(zloop<task*> *loop,const message_locinfo&loc,bool is_history);
- virtual void init_card_from_db();
- virtual ~card_list(){}
- };
- #endif
|