summaryrefslogtreecommitdiffstats
path: root/Classes/PhotoViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/PhotoViewController.h')
-rw-r--r--Classes/PhotoViewController.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Classes/PhotoViewController.h b/Classes/PhotoViewController.h
new file mode 100644
index 0000000..e1c71ae
--- /dev/null
+++ b/Classes/PhotoViewController.h
@@ -0,0 +1,24 @@
+//
+// PhotoViewController.h
+// acidcow
+//
+// Created by Matthew Handler on 4/18/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import <Three20/Three20.h>
+#import "Topic.h"
+
+@interface PhotoViewController : TTThumbsViewController <NSURLProtocolClient> {
+ NSArray *photoList;
+ NSMutableData *_acidcowPage;
+ Topic *topic;
+}
+
+@property (nonatomic, retain) NSArray *photoList;
+@property (retain) NSMutableData *_acidcowPage;
+@property (retain) Topic *topic;
+
+-(void)convertArray;
+@end