mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-23 11:58:29 +00:00
19 lines
410 B
Objective-C
19 lines
410 B
Objective-C
//
|
|
// APLocationManager.h
|
|
//
|
|
//
|
|
// Created by Zaid Elkurdi on 3/15/15.
|
|
//
|
|
//
|
|
#import <CoreLocation/CoreLocation.h>
|
|
#import "libobjcipc/objcipc.h"
|
|
#import "CPDistributedMessagingCenter.h"
|
|
|
|
@interface APLocationManager : NSObject <CLLocationManagerDelegate>
|
|
@property (nonatomic) BOOL shouldTerminate;
|
|
- (NSDictionary*)getCurrentLocation;
|
|
- (void)startMonitoringLocation;
|
|
- (void)stopMonitoringLocation;
|
|
|
|
@end
|