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
26DEFAULT_EXPORT_ATTRIBUTE
27@interface NCLocationPolygon : NSObject
28
32- (nonnull instancetype)initWithPolygon:(nonnull NCPolygon *)polygon
33 locationId:(int32_t)locationId
34 sublocationId:(int32_t)sublocationId;
35
39+ (nonnull instancetype)locationPolygonWithPolygon:(nonnull NCPolygon *)polygon
40 locationId:(int32_t)locationId
41 sublocationId:(int32_t)sublocationId;
42
48@property (nonatomic, readonly, nonnull) NCPolygon * polygon;
49
55@property (nonatomic, readonly) int32_t locationId;
56
62@property (nonatomic, readonly) int32_t sublocationId;
63
64@end