Add public API to stop and resume feature module

This commit is contained in:
chrwend 2016-06-20 19:55:23 -07:00
Родитель 9b0a041114
Коммит 43913558dc
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -29,6 +29,8 @@
@interface AVAFeature : NSObject
+ (void)resume;
+ (void)stop;
+ (void)setServerURL:(NSString *)serverURL;
+ (void)setIdentifier:(NSString *)identifier;

Просмотреть файл

@ -26,4 +26,13 @@
AVALogVerbose(@"AVAFeature: Feature started");
}
+ (void)resume {
}
+ (void)stop {
}
@end