CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/LocationHelper.h
Views: 1401
1
#import <Foundation/Foundation.h>
2
#import <CoreLocation/CoreLocation.h>
3
4
@protocol LocationHandlerDelegate <NSObject>
5
@required
6
- (void) SetGpsDataIOS:(CLLocation*)newLocation;
7
@end
8
9
@interface LocationHelper : NSObject<CLLocationManagerDelegate> {
10
CLLocationManager *locationManager;
11
}
12
13
@property(nonatomic,strong) id<LocationHandlerDelegate> delegate;
14
15
- (void) startLocationUpdates;
16
- (void) stopLocationUpdates;
17
18
@end
19
20