CompletionNotifying.swift 392 B

12345678910111213141516171819
  1. //
  2. // CompletionNotifying.swift
  3. // LoopKitUI
  4. //
  5. // Created by Pete Schwamb on 1/29/19.
  6. // Copyright © 2019 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. public protocol CompletionDelegate: class {
  10. func completionNotifyingDidComplete(_ object: CompletionNotifying)
  11. }
  12. public protocol CompletionNotifying {
  13. var completionDelegate: CompletionDelegate? { set get }
  14. }