1
0

area_business_speed_checker.h 850 B

123456789101112131415161718192021
  1. #ifndef AREA_BUSINESS_SPEED_CHECKER_H
  2. #define AREA_BUSINESS_SPEED_CHECKER_H
  3. #include<unordered_map>
  4. #include"area_business.h"
  5. class area_business_speed_checker : public area_business
  6. {
  7. public:
  8. virtual int area_business_type()
  9. {
  10. return 4;
  11. }
  12. void on_load_his(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
  13. void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
  14. void on_hover(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
  15. void on_leave(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
  16. };
  17. #endif // AREA_BUSINESS_SPEED_CHECKER_H