summaryrefslogtreecommitdiffstats
path: root/Classes/Topic.m
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-20 14:39:20 -0400
committermatt handler <matt.handler@gmail.com>2011-04-20 14:39:20 -0400
commit9d52266f823daf5cb83e3eebe1b9f57594bc9d4a (patch)
tree38402f7ddbb0f3a40ebc7c88d673756701f47510 /Classes/Topic.m
downloadpiccast-app-9d52266f823daf5cb83e3eebe1b9f57594bc9d4a.tar.gz
piccast-app-9d52266f823daf5cb83e3eebe1b9f57594bc9d4a.zip
first commit
Diffstat (limited to 'Classes/Topic.m')
-rw-r--r--Classes/Topic.m28
1 files changed, 28 insertions, 0 deletions
diff --git a/Classes/Topic.m b/Classes/Topic.m
new file mode 100644
index 0000000..712519b
--- /dev/null
+++ b/Classes/Topic.m
@@ -0,0 +1,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