summaryrefslogtreecommitdiffstats
path: root/Classes/Topic.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/Topic.h')
-rw-r--r--Classes/Topic.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Classes/Topic.h b/Classes/Topic.h
index 2ae6520..26f8c29 100644
--- a/Classes/Topic.h
+++ b/Classes/Topic.h
@@ -5,14 +5,13 @@
// Created by Matthew Handler on 4/16/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
-
+#import "FMResultSet.h"
#import <UIKit/UIKit.h>
@interface Topic : NSObject {
NSString *title;
- NSString *creator;
NSString *description;
NSDate *releaseDate;
NSString *category;
@@ -25,10 +24,13 @@
@property (nonatomic, copy) NSNumber *picCount;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *guid;
-@property (nonatomic, copy) NSString *creator;
@property (nonatomic, copy) NSString *description;
@property (nonatomic, copy) NSDate *releaseDate;
@property (nonatomic, copy) NSString *category;
@property (nonatomic, copy) NSString *iconUrl;
++ (Topic *) initFromDatabaseRow:(FMResultSet *)result;
++ (NSString *) dateToString:(NSDate *)date;
++ (NSDate *) stringToDate:(NSString *)string;
+
@end