Loading...
Searching...
No Matches
NCLocationPolygon.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCPolygon.h"
3#import <Foundation/Foundation.h>
4
16DEFAULT_EXPORT_ATTRIBUTE
17@interface NCLocationPolygon : NSObject
18
22- (nonnull instancetype)initWithPolygon:(nonnull NCPolygon *)polygon
23 locationId:(int32_t)locationId
24 sublocationId:(int32_t)sublocationId;
25
29+ (nonnull instancetype)locationPolygonWithPolygon:(nonnull NCPolygon *)polygon
30 locationId:(int32_t)locationId
31 sublocationId:(int32_t)sublocationId;
32
38@property (nonatomic, readonly, nonnull) NCPolygon * polygon;
39
45@property (nonatomic, readonly) int32_t locationId;
46
52@property (nonatomic, readonly) int32_t sublocationId;
53
54@end