summaryrefslogtreecommitdiff
path: root/platform/ios/test/MGLMockGestureRecognizers.h
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2020-02-27 13:09:39 -0800
committerMinh Nguyễn <mxn@1ec5.org>2020-02-27 17:14:20 -0800
commit206b9bde5ed9204de6ec18c0d37495db7c30aa09 (patch)
tree0049d4d6bd9195c194c0fe96665ba72c92f00da5 /platform/ios/test/MGLMockGestureRecognizers.h
parentbd252e16a3574efd11cca57917f52e6d1b2dd0a2 (diff)
downloadqtlocation-mapboxgl-206b9bde5ed9204de6ec18c0d37495db7c30aa09.tar.gz
[ios, macos] Deleted iOS/macOS map SDK sources, resources, scripts
Diffstat (limited to 'platform/ios/test/MGLMockGestureRecognizers.h')
-rw-r--r--platform/ios/test/MGLMockGestureRecognizers.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/platform/ios/test/MGLMockGestureRecognizers.h b/platform/ios/test/MGLMockGestureRecognizers.h
deleted file mode 100644
index 29889e39f4..0000000000
--- a/platform/ios/test/MGLMockGestureRecognizers.h
+++ /dev/null
@@ -1,29 +0,0 @@
-
-#import <UIKit/UIKit.h>
-
-@interface UIPinchGestureRecognizerMock : UIPinchGestureRecognizer
-@property (nonatomic, readwrite) CGFloat velocity;
-@property (nonatomic) CGPoint locationInViewOverride;
-@property(nonatomic, readwrite) UIGestureRecognizerState state;
-@end
-
-@interface UIRotationGestureRecognizerMock : UIRotationGestureRecognizer
-@property(nonatomic, readwrite) UIGestureRecognizerState state;
-@end
-
-@interface UITapGestureRecognizerMock : UITapGestureRecognizer
-@property (strong, nonatomic) UIView *mockTappedView;
-@property (assign) CGPoint mockTappedPoint;
-@end
-
-@interface UILongPressGestureRecognizerMock : UILongPressGestureRecognizer
-@property(nonatomic, readwrite) UIGestureRecognizerState state;
-@property (assign) CGPoint mockTappedPoint;
-@end
-
-@interface UIPanGestureRecognizerMock : UIPanGestureRecognizer
-@property(nonatomic, readwrite) UIGestureRecognizerState state;
-@property (assign) CGPoint firstFingerPoint;
-@property (assign) CGPoint secondFingerPoint;
-@property(nonatomic, readwrite) NSUInteger numberOfTouches;
-@end