You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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