MBNNOpenLRLineLocation.h 738 B

123456789101112131415161718192021222324
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBXGeometry;
  4. @class MBNNGraphPath;
  5. /** Defines a location of a line on the road graph */
  6. NS_SWIFT_NAME(OpenLRLineLocation)
  7. __attribute__((visibility ("default")))
  8. @interface MBNNOpenLRLineLocation : NSObject
  9. // This class provides custom init which should be called
  10. - (nonnull instancetype)init NS_UNAVAILABLE;
  11. // This class provides custom init which should be called
  12. + (nonnull instancetype)new NS_UNAVAILABLE;
  13. /** Position of a line on a road graph */
  14. - (nonnull MBNNGraphPath *)getPath __attribute((ns_returns_retained));
  15. /** Shape of a line */
  16. - (nonnull MBXGeometry *)getShape __attribute((ns_returns_retained));
  17. @end