MBNNSettingsProfile.h 827 B

1234567891011121314151617181920212223
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxNavigationNative/MBNNProfileApplication.h>
  4. #import <MapboxNavigationNative/MBNNProfilePlatform.h>
  5. NS_SWIFT_NAME(SettingsProfile)
  6. __attribute__((visibility ("default")))
  7. @interface MBNNSettingsProfile : 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. - (nonnull instancetype)initWithApplication:(MBNNProfileApplication)application
  13. platform:(MBNNProfilePlatform)platform;
  14. @property (nonatomic, readonly) MBNNProfileApplication application;
  15. @property (nonatomic, readonly) MBNNProfilePlatform platform;
  16. @end