Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
move to shared private header
Browse files Browse the repository at this point in the history
  • Loading branch information
incanus committed Jun 16, 2015
1 parent 82ee46e commit e45bacf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
8 changes: 8 additions & 0 deletions platform/ios/MGLMultiPoint_Private.h
@@ -0,0 +1,8 @@
#import "MGLMultiPoint.h"

@interface MGLMultiPoint (Private)

- (instancetype)initWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
- (BOOL)intersectsOverlayBounds:(MGLCoordinateBounds)overlayBounds;

@end
7 changes: 1 addition & 6 deletions platform/ios/MGLPolygon.m
@@ -1,11 +1,6 @@
#import "MGLPolygon.h"

@interface MGLMultiPoint (MGLPolygon)

- (instancetype)initWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
- (BOOL)intersectsOverlayBounds:(MGLCoordinateBounds)overlayBounds;

@end
#import "MGLMultiPoint_Private.h"

@implementation MGLPolygon

Expand Down
7 changes: 1 addition & 6 deletions platform/ios/MGLPolyline.m
@@ -1,11 +1,6 @@
#import "MGLPolyline.h"

@interface MGLMultiPoint (MGLPolyline)

- (instancetype)initWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
- (BOOL)intersectsOverlayBounds:(MGLCoordinateBounds)overlayBounds;

@end
#import "MGLMultiPoint_Private.h"

@implementation MGLPolyline

Expand Down

0 comments on commit e45bacf

Please sign in to comment.