MBNNElectronicHorizon360Edge.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** ElectronicHorizon360 edge. Represents edge of ElectronicHorizon360. */
  4. NS_SWIFT_NAME(ElectronicHorizon360Edge)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNElectronicHorizon360Edge : 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)initWithBranchLinks:(nonnull NSArray<NSNumber *> *)branchLinks
  12. length:(double)length
  13. roadObjectsOnEdge:(nonnull NSArray<NSString *> *)roadObjectsOnEdge;
  14. /** The outgoing Edges. */
  15. @property (nonatomic, readonly, nonnull, copy) NSArray<NSNumber *> *branchLinks;
  16. /** Length of the edge. */
  17. @property (nonatomic, readonly) double length;
  18. /** Ids of road objects for `roadObjectStore` on the edge */
  19. @property (nonatomic, readonly, nonnull, copy) NSArray<NSString *> *roadObjectsOnEdge;
  20. @end