mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
19 lines
426 B
C
19 lines
426 B
C
|
#import <Foundation/Foundation.h>
|
||
|
#import <CoreLocation/CoreLocation.h>
|
||
|
|
||
|
@protocol LocationHandlerDelegate <NSObject>
|
||
|
@required
|
||
|
- (void) SetGpsDataIOS:(CLLocation*)newLocation;
|
||
|
@end
|
||
|
|
||
|
@interface LocationHelper : NSObject<CLLocationManagerDelegate> {
|
||
|
CLLocationManager *locationManager;
|
||
|
}
|
||
|
|
||
|
@property(nonatomic,strong) id<LocationHandlerDelegate> delegate;
|
||
|
|
||
|
- (void) startLocationUpdates;
|
||
|
- (void) stopLocationUpdates;
|
||
|
|
||
|
@end
|