Files
phonegap-plugins/iOS/Diagnostic/Diagnostic.h
Avantic Estudio de Ingenieros 61d22b0fbd Initial commit - Diagnostic Plugin
2012-05-04 11:43:37 +01:00

19 lines
655 B
Objective-C

//
// Diagnostic.h
// Plugin diagnostic
//
// Copyright (c) 2012 AVANTIC ESTUDIO DE INGENIEROS
//
#import <Cordova/CDVPlugin.h>
@interface Diagnostic : CDVPlugin
- (void) isLocationEnabled: (NSMutableArray*)arguments withDict:(NSMutableDictionary*) options;
- (void) isLocationEnabledOnly: (NSMutableArray*)arguments withDict:(NSMutableDictionary*) options;
- (void) isLocationAuthorized: (NSMutableArray*)arguments withDict:(NSMutableDictionary*) options;
- (void) isWifiEnabled: (NSMutableArray*)arguments withDict:(NSMutableDictionary*) options;
- (void) isCameraEnabled: (NSMutableArray*)arguments withDict:(NSMutableDictionary*) options;
@end