1234567891011121314151617181920212223242526272829303132 |
- #include "area.h"
- #include "card_base.h"
- #include "area_business_count_checker.h"
-
- void area_business_count_checker::on_enter(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr)
- {
- }
- void area_business_count_checker::on_hover(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
- {
- }
-
- void area_business_count_checker::on_leave(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
- {
- }
|