30 lines
738 B
Objective-C
30 lines
738 B
Objective-C
//
|
|
// RSFeedFinder.h
|
|
// RSFeedFinder
|
|
//
|
|
// Created by Brent Simmons on 3/7/16.
|
|
// Copyright © 2016 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
//! Project version number for RSFeedFinder.
|
|
FOUNDATION_EXPORT double RSFeedFinderVersionNumber;
|
|
|
|
//! Project version string for RSFeedFinder.
|
|
FOUNDATION_EXPORT const unsigned char RSFeedFinderVersionString[];
|
|
|
|
// In this header, you should import all the public headers of your framework using statements like #import <RSFeedFinder/PublicHeader.h>
|
|
|
|
|
|
/* Given a URL, find one or more feeds.
|
|
|
|
Download URL
|
|
If is feed, return URL
|
|
If is web page, find possible feeds in web page
|
|
Download each possible URL
|
|
If URL is feed, add to URLs list
|
|
return URLs list
|
|
*/
|
|
|