co-maps/iphone/Maps/Core/Settings/MWMRoutingOptions.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
453 B
C
Raw Normal View History

2025-11-22 13:58:55 +01:00
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
NS_SWIFT_NAME(RoutingOptions)
@interface MWMRoutingOptions : NSObject
@property(nonatomic) BOOL avoidToll;
@property(nonatomic) BOOL avoidDirty;
@property(nonatomic) BOOL avoidPaved;
@property(nonatomic) BOOL avoidFerry;
@property(nonatomic) BOOL avoidMotorway;
@property(nonatomic) BOOL avoidSteps;
@property(nonatomic, readonly) BOOL hasOptions;
- (void)save;
@end
NS_ASSUME_NONNULL_END