您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CULConfigJsonParser.h 390B

12345678910111213141516171819202122
  1. //
  2. // CULConfigJsonParser.h
  3. //
  4. // Created by Nikolay Demyankov on 29.01.17.
  5. //
  6. #import <Foundation/Foundation.h>
  7. #import "CULHost.h"
  8. /**
  9. * JSON parser for plugin's preferences.
  10. */
  11. @interface CULConfigJsonParser : NSObject
  12. /**
  13. * Parse JSON config.
  14. *
  15. * @return list of hosts, defined in the config file
  16. */
  17. + (NSArray<CULHost *> *)parseConfig:(NSString *)pathToJsonConfig;
  18. @end