#import #import @protocol LocationHandlerDelegate @required - (void) SetGpsDataIOS:(CLLocation*)newLocation; @end @interface LocationHelper : NSObject { CLLocationManager *locationManager; } @property(nonatomic,strong) id delegate; - (void) startLocationUpdates; - (void) stopLocationUpdates; @end