cordova-plugin-run-in-backg.../src/ios/APPBackgroundMode.h

23 lines
550 B
C
Raw Normal View History

2013-10-08 09:00:36 +00:00
/**
* APPBackgroundMode.h
* Cordova BackgroundMode Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 08/10/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
2013-10-08 12:36:19 +00:00
#import <CoreLocation/CoreLocation.h>
2013-10-08 09:00:36 +00:00
@interface APPBackgroundMode : CDVPlugin
// Aktiviert den Hintergrundmodus
- (void) activateMode;
// Deaktiviert den Hintergrundmodus
- (void) deactivateMode;
2013-10-08 12:36:19 +00:00
@property (nonatomic, strong) CLLocationManager* locationManager;
2013-10-08 09:00:36 +00:00
@end