blob: 712519b9e71b9403dc1560cdeed3b03f71e901f1 (
plain)
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
|
//
// Topic.m
// acidcow
//
// Created by Matthew Handler on 4/16/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import "Topic.h"
@implementation Topic
@synthesize title, guid, creator, iconUrl, description, releaseDate, category, picCount;
- (void)dealloc {
[picCount release];
[guid release];
[title release];
[creator release];
[description release];
[releaseDate release];
[category release];
[iconUrl release];
[super dealloc];
}
@end
|