fixed conflict

This commit is contained in:
lixiaopeng
2021-10-29 15:03:24 +08:00
parent 53d6fa24ac
commit 59c5d66cfe
4 changed files with 75 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package com.mogo.eagle.core.function.call.hmi
import com.mogo.eagle.core.data.constants.MogoServicePaths
import com.mogo.eagle.core.data.enums.WarningDirectionEnum
import com.mogo.eagle.core.data.notice.NoticeNormalData
import com.mogo.eagle.core.data.notice.NoticePushData
import com.mogo.eagle.core.function.api.hmi.warning.IMoGoWaringProvider
import com.mogo.eagle.core.function.api.hmi.warning.IMoGoWarningStatusListener
@@ -137,5 +138,12 @@ object CallerHmiManager : CallerBase() {
noticeProviderApi.showNoticeForTrafficWithData(pushData)
}
/**
* 普通公告弹窗
*
*/
fun showNormalBanner(noticeNormal: NoticeNormalData) {
noticeProviderApi.showNoticeNormalData(noticeNormal)
}
}