Skip to content

Commit 695cd0b

Browse files
Tyler FoxTyler Fox
authored andcommitted
Restructure imports to fix undefined symbol issue when using CocoaPod
1 parent 7e5c92d commit 695cd0b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Source/INTULocationManager.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2424
//
2525

26-
#import <Foundation/Foundation.h>
27-
#import <CoreLocation/CoreLocation.h>
2826
#import "INTULocationRequestDefines.h"
2927

3028
/**

Source/INTULocationRequest.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@
2323
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2424
//
2525

26-
#import <Foundation/Foundation.h>
27-
#import <CoreLocation/CoreLocation.h>
2826
#import "INTULocationRequestDefines.h"
2927

30-
@class CLLocation;
3128
@class INTULocationRequest;
3229

3330
/**

Source/INTULocationRequestDefines.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
#ifndef INTU_LOCATION_REQUEST_DEFINES_H
2727
#define INTU_LOCATION_REQUEST_DEFINES_H
2828

29+
#import <Foundation/Foundation.h>
30+
#import <CoreLocation/CoreLocation.h>
31+
2932
static const CGFloat kINTUHorizontalAccuracyThresholdCity = 5000.0; // in meters
3033
static const CGFloat kINTUHorizontalAccuracyThresholdNeighborhood = 1000.0; // in meters
3134
static const CGFloat kINTUHorizontalAccuracyThresholdBlock = 100.0; // in meters

0 commit comments

Comments
 (0)