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

25 lines
631 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 {
BOOL _activated;
}
2013-10-08 09:00:36 +00:00
// Aktiviert den Hintergrundmodus
2013-10-09 08:50:15 +00:00
- (void) activate:(CDVInvokedUrlCommand *)command;
2013-10-08 09:00:36 +00:00
// Deaktiviert den Hintergrundmodus
2013-10-09 08:50:15 +00:00
- (void) deactivate:(CDVInvokedUrlCommand *)command;
2013-10-08 09:00:36 +00:00
2013-10-08 12:36:19 +00:00
@property (nonatomic, strong) CLLocationManager* locationManager;
2013-10-08 09:00:36 +00:00
@end