summaryrefslogtreecommitdiffstats
path: root/Classes/PicDumpViewController.h
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/PicDumpViewController.h
downloadpiccast-app-9d52266f823daf5cb83e3eebe1b9f57594bc9d4a.tar.gz
piccast-app-9d52266f823daf5cb83e3eebe1b9f57594bc9d4a.zip
first commit
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