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.

CULConfigXmlParser.h 376B

12345678910111213141516171819202122
  1. //
  2. // CULConfigXmlParser.h
  3. //
  4. // Created by Nikolay Demyankov on 15.09.15.
  5. //
  6. #import <Foundation/Foundation.h>
  7. #import "CULHost.h"
  8. /**
  9. * Parser for config.xml. Reads only plugin-specific preferences.
  10. */
  11. @interface CULConfigXmlParser : NSObject
  12. /**
  13. * Parse config.xml
  14. *
  15. * @return list of hosts, defined in the config file
  16. */
  17. + (NSArray<CULHost *> *)parse;
  18. @end