ecency-mobile/ios/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSService.h
2018-11-21 23:52:26 +03:00

27 lines
428 B
Objective-C
Executable File

#import <Foundation/Foundation.h>
/**
* Protocol declaring service logic.
*/
@protocol MSService <NSObject>
/**
* Enable/disable this service.
*
* @param isEnabled whether this service is enabled or not.
*
* @see isEnabled
*/
+ (void)setEnabled:(BOOL)isEnabled;
/**
* Is this service enabled.
*
* @return a boolean whether this service is enabled or not.
*
* @see setEnabled:
*/
+ (BOOL)isEnabled;
@end