SensorValueGlucoseEvent.swift 331 B

123456789101112131415161718
  1. //
  2. // SensorValueGlucoseEvent.swift
  3. // RileyLink
  4. //
  5. // Created by Timothy Mecklem on 12/11/16.
  6. // Copyright © 2016 Pete Schwamb. All rights reserved.
  7. //
  8. import Foundation
  9. /// An event that contains an sgv
  10. public protocol SensorValueGlucoseEvent: RelativeTimestampedGlucoseEvent {
  11. var sgv: Int {
  12. get
  13. }
  14. }