MBNNMatchedPolygonLocation.h 816 B

12345678910111213141516171819202122232425
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBXGeometry;
  4. @class MBNNPosition;
  5. NS_SWIFT_NAME(MatchedPolygonLocation)
  6. __attribute__((visibility ("default")))
  7. @interface MBNNMatchedPolygonLocation : NSObject
  8. // This class provides custom init which should be called
  9. - (nonnull instancetype)init NS_UNAVAILABLE;
  10. // This class provides custom init which should be called
  11. + (nonnull instancetype)new NS_UNAVAILABLE;
  12. /** Positions of polygon entries */
  13. - (nonnull NSArray<MBNNPosition *> *)getEntries __attribute((ns_returns_retained));
  14. /** Positions of polygon exits */
  15. - (nonnull NSArray<MBNNPosition *> *)getExits __attribute((ns_returns_retained));
  16. /** Shape of a polygon */
  17. - (nonnull MBXGeometry *)getShape __attribute((ns_returns_retained));
  18. @end