MBNNMatchableOpenLr.h 821 B

1234567891011121314151617181920212223242526
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNOpenLR;
  4. /** The record represents a piece of data which is required to match one OpenLR. */
  5. NS_SWIFT_NAME(MatchableOpenLr)
  6. __attribute__((visibility ("default")))
  7. @interface MBNNMatchableOpenLr : 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)initWithOpenlr:(nonnull MBNNOpenLR *)openlr
  13. id:(nonnull NSString *)id;
  14. @property (nonatomic, readonly, nonnull) MBNNOpenLR *openlr;
  15. /** id of the resulting object */
  16. @property (nonatomic, readonly, nonnull, copy) NSString *id;
  17. @end