package safeluck.drive.evaluation.routecollect;
|
|
import safeluck.drive.evaluation.routecollect.bean.RoadCrossInfo;
|
import safeluck.drive.evaluation.routecollect.bean.RoadInfo;
|
|
/**
|
* DriveJudge
|
* Created by lzw on 2020/9/16. 10:54:19
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public interface ILoadListener {
|
|
void finishCollectItem(CollectPointResult collectPointResult);
|
|
void roadInfo(RoadInfo roadInfo);
|
void roadCrossInfo(RoadCrossInfo roadCrossInfo);
|
}
|