20 lines
314 B
Objective-C
Executable File
20 lines
314 B
Objective-C
Executable File
//
|
|
// RSRSSParser.h
|
|
// RSParser
|
|
//
|
|
// Created by Brent Simmons on 1/6/15.
|
|
// Copyright (c) 2015 Ranchero Software LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
@class ParserData;
|
|
@class RSParsedFeed;
|
|
|
|
@interface RSRSSParser : NSObject
|
|
|
|
+ (RSParsedFeed *)parseFeedWithData:(ParserData *)parserData;
|
|
|
|
|
|
@end
|