1234567891011121314151617181920212223242526272829 |
- #ifndef _area_business_person_dwell_checker_hpp_
- #define _area_business_person_dwell_checker_hpp_
- #include"area_business.h"
- struct area_business_person_dwell_checker:area_business
- {
- int area_business_type()
- {
- return 2;
- }
-
- virtual 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);
-
- void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
-
- void on_hover(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
-
- void on_leave(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
- };
- #endif
|