NetNewsWire/Frameworks/RSParser/OPML/RSOPMLItem.h

27 lines
594 B
C
Raw Normal View History

//
// RSOPMLItem.h
2017-06-26 01:32:07 +02:00
// RSParser
//
// Created by Brent Simmons on 2/28/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
@import Foundation;
@class RSOPMLFeedSpecifier;
@interface RSOPMLItem : NSObject
@property (nonatomic) NSDictionary *attributes;
2017-06-26 02:34:48 +02:00
@property (nonatomic) NSArray <RSOPMLItem *> *children;
- (void)addChild:(RSOPMLItem *)child;
@property (nonatomic, readonly) RSOPMLFeedSpecifier *OPMLFeedSpecifier; //May be nil.
@property (nonatomic, readonly) NSString *titleFromAttributes; //May be nil.
@property (nonatomic, readonly) BOOL isFolder;
@end