summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLAnnotationImage_Private.h
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2015-12-16 16:49:29 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-12-17 10:16:22 -0800
commita7e4e6bb1c738f20f8585249fe3ab61cbbf85f71 (patch)
tree3dad4e104afa95af55860cbbafac6adc8d801048 /platform/ios/src/MGLAnnotationImage_Private.h
parent7a4e7376e1422964cb7a456f772104e28003f4d2 (diff)
downloadqtlocation-mapboxgl-a7e4e6bb1c738f20f8585249fe3ab61cbbf85f71.tar.gz
[ios] Move source to src folder, matching osx
Diffstat (limited to 'platform/ios/src/MGLAnnotationImage_Private.h')
-rw-r--r--platform/ios/src/MGLAnnotationImage_Private.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/platform/ios/src/MGLAnnotationImage_Private.h b/platform/ios/src/MGLAnnotationImage_Private.h
new file mode 100644
index 0000000000..f22a9ac4e2
--- /dev/null
+++ b/platform/ios/src/MGLAnnotationImage_Private.h
@@ -0,0 +1,18 @@
+#import "MGLAnnotationImage.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@protocol MGLAnnotationImageDelegate <NSObject>
+
+@required
+- (void)annotationImageNeedsRedisplay:(MGLAnnotationImage *)annotationImage;
+
+@end
+
+@interface MGLAnnotationImage (Private)
+
+@property (nonatomic, weak) id<MGLAnnotationImageDelegate> delegate;
+
+@end
+
+NS_ASSUME_NONNULL_END