summaryrefslogtreecommitdiffstats
path: root/Classes/PicDumpViewController.h
blob: 4716538804f6185909346ef564211cdbcd601e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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