summaryrefslogtreecommitdiff
path: root/Example Apps/Example Swift/ProxyManagerDelegate.swift
blob: e192e2b6b5f236f00e66605296b7f84f64e52eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
//  Protocol+ProxyManagerDelegate.swift
//  SmartDeviceLink
//
//  Created by Nicole on 4/12/18.
//  Copyright © 2018 smartdevicelink. All rights reserved.
//

import Foundation

protocol ProxyManagerDelegate: AnyObject {
    var proxyState: ProxyState { get }

    func didChangeProxyState(_ newState: ProxyState)
}