NetNewsWire/Frameworks/RSParser/OPML/RSOPMLItem.h

31 lines
650 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;
2017-10-22 06:00:21 +02:00
NS_ASSUME_NONNULL_BEGIN
@interface RSOPMLItem : NSObject
2017-10-22 06:00:21 +02:00
@property (nonatomic, nullable) NSDictionary *attributes;
@property (nonatomic, nullable) NSArray <RSOPMLItem *> *children;
- (void)addChild:(RSOPMLItem *)child;
2017-10-22 06:00:21 +02:00
@property (nonatomic, nullable, readonly) RSOPMLFeedSpecifier *feedSpecifier;
2017-10-22 06:00:21 +02:00
@property (nonatomic, nullable, readonly) NSString *titleFromAttributes;
@property (nonatomic, readonly) BOOL isFolder;
@end
2017-10-22 06:00:21 +02:00
NS_ASSUME_NONNULL_END