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