summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2015-07-06 20:47:13 -0700
committerKonstantin Käfer <mail@kkaefer.com>2015-07-08 19:46:03 +0200
commite3b823b11b4be58457498a4853580702c747d6dc (patch)
tree8063ce69f8bc7ebc21c1fd886ed349aecde79f1d /include
parent5f9e675ee0635d586ebe313702c270b48ea39159 (diff)
downloadqtlocation-mapboxgl-e3b823b11b4be58457498a4853580702c747d6dc.tar.gz
nullability for MGLAnnotationImage
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/ios/MGLAnnotationImage.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/ios/MGLAnnotationImage.h b/include/mbgl/ios/MGLAnnotationImage.h
index 142f794a09..50791f9d91 100644
--- a/include/mbgl/ios/MGLAnnotationImage.h
+++ b/include/mbgl/ios/MGLAnnotationImage.h
@@ -1,5 +1,7 @@
#import <UIKit/UIKit.h>
+NS_ASSUME_NONNULL_BEGIN
+
@interface MGLAnnotationImage : NSObject
@property (nonatomic, readonly) UIImage *image;
@@ -8,3 +10,5 @@
+ (instancetype)annotationImageWithImage:(UIImage *)image reuseIdentifier:(NSString *)reuseIdentifier;
@end
+
+NS_ASSUME_NONNULL_END