summaryrefslogtreecommitdiffstats
path: root/Classes/BrowseViewController.h
blob: e89ddcdd03213ce85058119691db12f327d3eae5 (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
//
//  BrowseViewController.h
//  PicCast
//
//  Created by Matthew Handler on 4/29/11.
//  Copyright 2011 Earl Industries. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "HJObjManager.h"
#import "PhotoViewController.h"
#import "FMDatabase.h"
#import "SectionDictionary.h"
#import "Fetcher.h"
#import "Source.h"

@interface BrowseViewController : UIViewController <UITableViewDataSource, NSURLProtocolClient, FetcherDelegate> {
    //UINavigationController *topicsNavigationController;
	NSMutableDictionary *sectionDictionary;
	NSMutableDictionary *sourcesDictionary;
	
	SectionDictionary *tableDictionary; // structure to sync with table
	//FeedViewController *feedViewController; // the view that a source points to, which shows recent sets
	//PhotoViewController *photoViewController;
	
	HJObjManager* objMan;
}

@property (nonatomic, retain) IBOutlet UITableView *tableView;

@end