From 9d52266f823daf5cb83e3eebe1b9f57594bc9d4a Mon Sep 17 00:00:00 2001 From: matt handler Date: Wed, 20 Apr 2011 14:39:20 -0400 Subject: first commit --- Classes/TopicsViewController.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Classes/TopicsViewController.h (limited to 'Classes/TopicsViewController.h') diff --git a/Classes/TopicsViewController.h b/Classes/TopicsViewController.h new file mode 100644 index 0000000..58acc43 --- /dev/null +++ b/Classes/TopicsViewController.h @@ -0,0 +1,33 @@ +// +// TopicsViewController.h +// acidcow +// +// Created by Matthew Handler on 4/15/11. +// Copyright 2011 Earl Industries. All rights reserved. +// + +#import +#import "XMLParser.h" +#import "HJObjManager.h" +#import "PicDumpViewController.h" +#import "PhotoViewController.h" + +@interface TopicsViewController : UITableViewController { + UINavigationController *topicsNavigationController; + NSMutableArray *topics; + PicDumpViewController *picDumpViewController; + PhotoViewController *photoViewController; + XMLParser *parser; + HJObjManager* objMan; +} + +@property (nonatomic, retain, readonly) UINavigationController *topicsNavigationController; +@property (nonatomic, retain) PhotoViewController *photoViewController; +@property (nonatomic, retain) NSMutableArray *topics; +@property (nonatomic, retain, readonly) PicDumpViewController *picDumpViewController; +@property (nonatomic, retain) XMLParser *parser; + +// Called by the ParserChoiceViewController based on the selected parser type. +- (void)startParsing; + +@end -- cgit v1.2.3