1234567891011121314151617181920212223242526272829303132 |
- #include "area.h"
- #include "card_base.h"
- #include "area_business_person_attendance.h"
- area_business_person_attendance::area_business_person_attendance()
- {
- }
- //记录进入时间等信息,结束考勤,根据离开的时间和距离,判断是否记录一条新的考勤记录
- void area_business_person_attendance::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_person_attendance::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_person_attendance::on_leave(const std::shared_ptr<area_hover>&a,
- const std::shared_ptr<card_location_base>&c,std::shared_ptr<business_data> ptr)
- {
- }
|