2017-06-20 21:18:46 -07:00
|
|
|
//
|
|
|
|
// RSRSSParser.h
|
2017-06-25 14:06:01 -07:00
|
|
|
// RSParser
|
2017-06-20 21:18:46 -07:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 1/6/15.
|
|
|
|
// Copyright (c) 2015 Ranchero Software LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2017-06-25 16:32:07 -07:00
|
|
|
@import Foundation;
|
|
|
|
|
|
|
|
@class ParserData;
|
|
|
|
@class RSParsedFeed;
|
|
|
|
|
|
|
|
@interface RSRSSParser : NSObject
|
|
|
|
|
|
|
|
+ (RSParsedFeed *)parseFeedWithData:(ParserData *)parserData;
|
2017-06-20 21:18:46 -07:00
|
|
|
|
|
|
|
|
|
|
|
@end
|