MBNNRailwayCrossingInfo.h 679 B

123456789101112131415161718192021
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(RailwayCrossingInfo)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNRailwayCrossingInfo : NSObject
  6. // This class provides custom init which should be called
  7. - (nonnull instancetype)init NS_UNAVAILABLE;
  8. // This class provides custom init which should be called
  9. + (nonnull instancetype)new NS_UNAVAILABLE;
  10. - (nonnull instancetype)initWithIsRailwayCrossing:(BOOL)isRailwayCrossing;
  11. /** will be always `true` (Bindgen does not allow empty records at the moment) */
  12. @property (nonatomic, readonly, getter=isIsRailwayCrossing) BOOL isRailwayCrossing;
  13. @end