Copy of rackspace-ios version 2.1.1
[pithos-ios] / Classes / FeedItem.h
1 //
2 //  FeedItem.h
3 //
4 //  Created by Mike Mayo on 1/28/10.
5 //  Copyright Mike Mayo 2010. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10
11 @interface FeedItem : NSObject {
12
13         NSString *title;
14         NSString *link;
15         NSString *guid;
16         NSString *description;
17         NSString *content;
18         NSString *creator;
19         NSDate *pubDate;
20                 
21 }
22
23 @property (nonatomic, retain) NSString *title;
24 @property (nonatomic, retain) NSString *link;
25 @property (nonatomic, retain) NSString *guid;
26 @property (nonatomic, retain) NSString *description;
27 @property (nonatomic, retain) NSString *content;
28 @property (nonatomic, retain) NSString *creator;
29 @property (nonatomic, retain) NSDate *pubDate;
30
31 - (NSComparisonResult)compare:(FeedItem *)anotherFeedItem;
32
33 @end