summaryrefslogtreecommitdiffstats
path: root/Classes/TopicsViewController.h
blob: 631a5d028af7f3f3136a500fe0cbd81a98775eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  TopicsViewController.h
//  acidcow
//
//  Created by Matthew Handler on 4/15/11.
//  Copyright 2011 Earl Industries. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "XMLParser.h"
#import "HJObjManager.h"
//#import "PicDumpViewController.h"
#import "SourcesEditViewController.h"
#import "PhotoViewController.h"

@interface TopicsViewController : UITableViewController <XMLParserDelegate, SourcesEditViewControllerDelegate>{
    UINavigationController *topicsNavigationController;
    NSMutableArray *topics;
//	PicDumpViewController *picDumpViewController;
	PhotoViewController *photoViewController;
    XMLParser *parser;
	HJObjManager* objMan;
}

- (IBAction)showSources:(id)sender;

@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