MBNNDistanceInfo.h 759 B

12345678910111213141516171819202122232425
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /**
  4. * DistanceInfo is an internal data of OpenLRLineLocation.
  5. * It's not intended to be read or set from the outside.
  6. */
  7. NS_SWIFT_NAME(DistanceInfo)
  8. __attribute__((visibility ("default")))
  9. @interface MBNNDistanceInfo : NSObject
  10. // This class provides custom init which should be called
  11. - (nonnull instancetype)init NS_UNAVAILABLE;
  12. // This class provides custom init which should be called
  13. + (nonnull instancetype)new NS_UNAVAILABLE;
  14. - (nonnull instancetype)initWithDistance:(double)distance
  15. length:(double)length;
  16. @property (nonatomic, readonly) double distance;
  17. @property (nonatomic, readonly) double length;
  18. @end