-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathRSSEntry.m
executable file
·50 lines (42 loc) · 891 Bytes
/
RSSEntry.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// RSSEntry.m
// RSSKit
//
// Created by Árpád Goretity on 01/11/2011.
// Licensed under a CreativeCommons Attribution 3.0 Unported License
//
#import "RSSEntry.h"
@implementation RSSEntry
@synthesize title;
@synthesize url;
@synthesize uid;
@synthesize date;
@synthesize summary;
@synthesize categories;
@synthesize comments;
@synthesize content;
@synthesize copyright;
@synthesize attachedMedia;
@synthesize author;
- (id) init {
self = [super init];
NSMutableArray *theCategories = [[NSMutableArray alloc] init];
self.categories = theCategories;
[theCategories release];
return self;
}
- (void) dealloc {
self.title = NULL;
self.url = NULL;
self.uid = NULL;
self.date = NULL;
self.summary = NULL;
self.categories = NULL;
self.comments = NULL;
self.content = NULL;
self.copyright = NULL;
self.attachedMedia = NULL;
self.author = NULL;
[super dealloc];
}
@end