MBNNRoadGraphVersionInfo.h 810 B

12345678910111213141516171819202122
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Information about the version. Intended for informative use (not to build any logic around it) */
  4. NS_SWIFT_NAME(RoadGraphVersionInfo)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNRoadGraphVersionInfo : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithDataset:(nonnull NSString *)dataset
  12. version:(nonnull NSString *)version;
  13. @property (nonatomic, readonly, nonnull, copy) NSString *dataset;
  14. @property (nonatomic, readonly, nonnull, copy) NSString *version;
  15. @end