Loading...
Searching...
No Matches
NCLocationPoint.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCPoint.h"
3#import <Foundation/Foundation.h>
4
21DEFAULT_EXPORT_ATTRIBUTE
22@interface NCLocationPoint : NSObject
23
27- (nonnull instancetype)initWithPoint:(nonnull NCPoint *)point
28 locationId:(int32_t)locationId
29 sublocationId:(int32_t)sublocationId;
30
34+ (nonnull instancetype)locationPointWithPoint:(nonnull NCPoint *)point
35 locationId:(int32_t)locationId
36 sublocationId:(int32_t)sublocationId;
37
41@property (nonatomic, readonly, nonnull) NCPoint * point;
42
46@property (nonatomic, readonly) int32_t locationId;
47
51@property (nonatomic, readonly) int32_t sublocationId;
52
53@end