area_business_person_attendance.cpp 853 B

1234567891011121314151617181920212223242526272829303132
  1. #include "area.h"
  2. #include "card_base.h"
  3. #include "area_business_person_attendance.h"
  4. area_business_person_attendance::area_business_person_attendance()
  5. {
  6. }
  7. //记录进入时间等信息,结束考勤,根据离开的时间和距离,判断是否记录一条新的考勤记录
  8. void area_business_person_attendance::on_enter(const std::shared_ptr<area_hover>&a,
  9. const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data>&ptr)
  10. {
  11. }
  12. void area_business_person_attendance::on_hover(const std::shared_ptr<area_hover>&a,
  13. const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
  14. {
  15. }
  16. //记录离开考勤区域信息,开始考勤
  17. void area_business_person_attendance::on_leave(const std::shared_ptr<area_hover>&a,
  18. const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
  19. {
  20. }