session-ios/Signal/src/Loki/Redesign/View Controllers/DeviceLinkingModalDelegate.swift

13 lines
355 B
Swift
Raw Normal View History

2019-09-24 03:59:17 +02:00
@objc protocol DeviceLinkingModalDelegate {
2019-09-24 03:59:17 +02:00
func handleDeviceLinkAuthorized(_ deviceLink: DeviceLink)
2019-09-25 04:22:34 +02:00
func handleDeviceLinkingModalDismissed()
}
extension DeviceLinkingModalDelegate {
2019-09-25 04:22:34 +02:00
func handleDeviceLinkAuthorized(_ deviceLink: DeviceLink) { /* Do nothing */ }
func handleDeviceLinkingModalDismissed() { /* Do nothing */ }
2019-09-24 03:59:17 +02:00
}