// // 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