MBNNSetRoutesDataParams.h 827 B

12345678910111213141516171819202122232425
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @protocol MBNNRoutesData;
  4. NS_SWIFT_NAME(SetRoutesDataParams)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNSetRoutesDataParams : 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)initWithRoutes:(nonnull id<MBNNRoutesData>)routes
  12. legIndex:(uint32_t)legIndex;
  13. @property (nonatomic, readonly, nonnull) id<MBNNRoutesData> routes;
  14. /** Leg index of primary route. Can be >0 in the case of switch from alternative route back to main route. */
  15. @property (nonatomic, readonly) uint32_t legIndex;
  16. @end