Files
RSXML2/RSXML/FeedParser.h
relikd 10d37ec3f4 Added support for error messages & fixed bugs:
- parserClassForXMLData: did return instance instead of class
- DateParser: array index typo
2018-12-10 17:59:01 +01:00

25 lines
410 B
Objective-C

//
// FeedParser.h
// RSXML
//
// Created by Brent Simmons on 7/12/15.
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
//
@import Foundation;
@class RSParsedFeed;
@class RSXMLData;
@protocol FeedParser <NSObject>
+ (BOOL)canParseFeed:(RSXMLData * _Nonnull)xmlData;
- (nonnull instancetype)initWithXMLData:(RSXMLData * _Nonnull)xmlData;
- (nullable RSParsedFeed *)parseFeed;
@end