| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // SettingsNavigationViewController.swift
- // LoopKitUI
- //
- // Created by Pete Schwamb on 1/29/19.
- // Copyright © 2019 LoopKit Authors. All rights reserved.
- //
- import HealthKit
- import LoopKit
- import UIKit
- open class SettingsNavigationViewController: UINavigationController, CompletionNotifying {
- open weak var completionDelegate: CompletionDelegate?
- open func notifyComplete() {
- completionDelegate?.completionNotifyingDidComplete(self)
- }
- }
- open class CGMManagerSettingsNavigationViewController: SettingsNavigationViewController, CGMManagerOnboarding {
- open weak var cgmManagerOnboardingDelegate: CGMManagerOnboardingDelegate?
- }
- open class PumpManagerSettingsNavigationViewController: SettingsNavigationViewController, PumpManagerOnboarding {
- open weak var pumpManagerOnboardingDelegate: PumpManagerOnboardingDelegate?
-
- }
|