MBNNActiveGuidanceInfo.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNActiveGuidanceProgress;
  4. NS_SWIFT_NAME(ActiveGuidanceInfo)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNActiveGuidanceInfo : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithRouteProgress:(nonnull MBNNActiveGuidanceProgress *)routeProgress
  12. legProgress:(nonnull MBNNActiveGuidanceProgress *)legProgress
  13. stepProgress:(nonnull MBNNActiveGuidanceProgress *)stepProgress;
  14. /** Progress of current route */
  15. @property (nonatomic, readonly, nonnull) MBNNActiveGuidanceProgress *routeProgress;
  16. /** Progress of current leg */
  17. @property (nonatomic, readonly, nonnull) MBNNActiveGuidanceProgress *legProgress;
  18. /** Progress of current step */
  19. @property (nonatomic, readonly, nonnull) MBNNActiveGuidanceProgress *stepProgress;
  20. @end