mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-23 11:58:29 +00:00
16 lines
298 B
C
16 lines
298 B
C
|
//
|
||
|
// APLocationManager.h
|
||
|
//
|
||
|
//
|
||
|
// Created by Zaid Elkurdi on 3/15/15.
|
||
|
//
|
||
|
//
|
||
|
#import <CoreLocation/CoreLocation.h>
|
||
|
#import "CPDistributedMessagingCenter.h"
|
||
|
|
||
|
@interface APLocationManager : NSObject <CLLocationManagerDelegate>
|
||
|
- (void)startMonitoringLocation;
|
||
|
- (void)stopMonitoringLocation;
|
||
|
|
||
|
@end
|