summaryrefslogtreecommitdiff
path: root/include/mbgl/ios/MGLMultiPoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/ios/MGLMultiPoint.h')
-rw-r--r--include/mbgl/ios/MGLMultiPoint.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/ios/MGLMultiPoint.h b/include/mbgl/ios/MGLMultiPoint.h
index 8da956b539..1fc7ef6dcf 100644
--- a/include/mbgl/ios/MGLMultiPoint.h
+++ b/include/mbgl/ios/MGLMultiPoint.h
@@ -3,6 +3,8 @@
#import "MGLShape.h"
+NS_ASSUME_NONNULL_BEGIN
+
/** The `MGLMultiPoint` class is an abstract superclass used to define shapes composed of multiple points. You should not create instances of this class directly. Instead, you should create instances of the `MGLPolyline` or `MGLPolygon` classes. However, you can use the method and properties of this class to access information about the specific points associated with the line or polygon. */
@interface MGLMultiPoint : MGLShape
@@ -15,3 +17,5 @@
- (void)getCoordinates:(CLLocationCoordinate2D *)coords range:(NSRange)range;
@end
+
+NS_ASSUME_NONNULL_END