summaryrefslogtreecommitdiffstats
path: root/Classes/PicDumpViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/PicDumpViewController.h')
-rw-r--r--Classes/PicDumpViewController.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Classes/PicDumpViewController.h b/Classes/PicDumpViewController.h
new file mode 100644
index 0000000..4716538
--- /dev/null
+++ b/Classes/PicDumpViewController.h
@@ -0,0 +1,22 @@
+//
+// PicDumpViewController.h
+// acidcow
+//
+// Created by Matthew Handler on 4/16/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "Topic.h"
+//@class Topic;
+
+@interface PicDumpViewController : UIViewController <NSURLProtocolClient> {
+ NSMutableData *_acidcowPage;
+ NSDateFormatter *dateFormatter;
+ Topic *topic;
+}
+
+@property (nonatomic, retain) Topic *topic;
+@property (nonatomic, readonly, retain) NSDateFormatter *dateFormatter;
+
+@end