| 12345678910111213141516171819202122232425 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- @class MBNNGraphPosition;
- NS_SWIFT_NAME(MapMatch)
- __attribute__((visibility ("default")))
- @interface MBNNMapMatch : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithPosition:(nonnull MBNNGraphPosition *)position
- proba:(float)proba;
- @property (nonatomic, readonly, nonnull) MBNNGraphPosition *position;
- /** probability of user is actually on this position */
- @property (nonatomic, readonly) float proba;
- @end
|