Make ParserObjC a separate package and fix some linking issues.

This commit is contained in:
Brent Simmons
2024-05-21 21:34:08 -07:00
parent 1fee1f53ad
commit 926b8f494e
91 changed files with 61 additions and 22 deletions

View File

@@ -0,0 +1,24 @@
//
// 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