area_business_forbid.h 811 B

1234567891011121314151617
  1. #ifndef AREA_BUSINESS_FORBID_H
  2. #define AREA_BUSINESS_FORBID_H
  3. #include"area_business.h"
  4. class area_business_forbid : public area_business
  5. {
  6. public:
  7. 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);
  8. //记录进入时间等信息,生成告警
  9. void on_enter(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr);
  10. void on_hover(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
  11. //记录退出时间等信息
  12. void on_leave(const std::shared_ptr<area_hover>&a,const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr);
  13. };
  14. #endif // AREA_BUSINESS_FORBID_H