NetNewsWire/Frameworks/RSParser/RSParser.h

50 lines
1.1 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// RSParser.h
// RSParser
//
// Created by Brent Simmons on 6/20/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
@import Foundation;
// To parse RSS, Atom, JSON Feed, and RSS-in-JSON the easy way, see FeedParser.swift.
// Dates
#import <RSParser/RSDateParser.h>
// OPML
#import <RSParser/RSOPMLParser.h>
#import <RSParser/RSOPMLDocument.h>
#import <RSParser/RSOPMLItem.h>
#import <RSParser/RSOPMLAttributes.h>
#import <RSParser/RSOPMLFeedSpecifier.h>
#import <RSParser/RSOPMLError.h>
// For writing your own XML parser.
#import <RSParser/RSSAXParser.h>
// You should use FeedParser (Swift) instead of these two specific parsers
// and the objects they create.
// But theyre available if you want them.
#import <RSParser/RSRSSParser.h>
#import <RSParser/RSAtomParser.h>
#import <RSParser/RSParsedFeed.h>
#import <RSParser/RSParsedArticle.h>
// HTML
#import <RSParser/RSHTMLMetadataParser.h>
#import <RSParser/RSHTMLMetadata.h>
#import <RSParser/RSHTMLLinkParser.h>
#import <RSParser/RSSAXHTMLParser.h> // For writing your own HTML parser.
// Utilities
#import <RSParser/NSData+RSParser.h>
#import <RSParser/NSString+RSParser.h>