Skip to content

Commit

Permalink
Restructure imports to fix undefined symbol issue when using CocoaPod
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Fox authored and Tyler Fox committed Jan 23, 2015
1 parent 7e5c92d commit 695cd0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Source/INTULocationManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
#import "INTULocationRequestDefines.h"

/**
Expand Down
3 changes: 0 additions & 3 deletions Source/INTULocationRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
#import "INTULocationRequestDefines.h"

@class CLLocation;
@class INTULocationRequest;

/**
Expand Down
3 changes: 3 additions & 0 deletions Source/INTULocationRequestDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
#ifndef INTU_LOCATION_REQUEST_DEFINES_H
#define INTU_LOCATION_REQUEST_DEFINES_H

#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>

static const CGFloat kINTUHorizontalAccuracyThresholdCity = 5000.0; // in meters
static const CGFloat kINTUHorizontalAccuracyThresholdNeighborhood = 1000.0; // in meters
static const CGFloat kINTUHorizontalAccuracyThresholdBlock = 100.0; // in meters
Expand Down

0 comments on commit 695cd0b

Please sign in to comment.