mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-23 03:48:31 +00:00
16 lines
298 B
Objective-C
16 lines
298 B
Objective-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
|