mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 08:09:41 +01:00
25 lines
394 B
C
25 lines
394 B
C
|
//
|
||
|
// RSHTMLMetadataParser.h
|
||
|
// RSParser
|
||
|
//
|
||
|
// Created by Brent Simmons on 3/6/16.
|
||
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import Foundation;
|
||
|
|
||
|
|
||
|
@class RSHTMLMetadata;
|
||
|
@class ParserData;
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface RSHTMLMetadataParser : NSObject
|
||
|
|
||
|
+ (RSHTMLMetadata *)HTMLMetadataWithParserData:(ParserData *)parserData;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|