mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-15 12:04:53 +00:00
26 lines
413 B
Mathematica
26 lines
413 B
Mathematica
|
/**
|
||
|
* APPBackgroundMode.m
|
||
|
* 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 "APPBackgroundMode.h"
|
||
|
|
||
|
@implementation APPBackgroundMode
|
||
|
|
||
|
// Aktiviert den Hintergrundmodus
|
||
|
- (void) activateMode
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// Deaktiviert den Hintergrundmodus
|
||
|
- (void) deactivateMode
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
@end
|