mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-24 00:30:51 +01:00
19 lines
316 B
C
19 lines
316 B
C
|
//
|
||
|
// RSAtomParser.h
|
||
|
// RSParser
|
||
|
//
|
||
|
// Created by Brent Simmons on 1/15/15.
|
||
|
// Copyright (c) 2015 Ranchero Software LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import Foundation;
|
||
|
|
||
|
@class ParserData;
|
||
|
@class RSParsedFeed;
|
||
|
|
||
|
@interface RSAtomParser : NSObject
|
||
|
|
||
|
+ (RSParsedFeed *)parseFeedWithData:(ParserData *)parserData;
|
||
|
|
||
|
@end
|