diff options
Diffstat (limited to 'Classes/BrowseViewController.h')
-rw-r--r-- | Classes/BrowseViewController.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Classes/BrowseViewController.h b/Classes/BrowseViewController.h new file mode 100644 index 0000000..e89ddcd --- /dev/null +++ b/Classes/BrowseViewController.h @@ -0,0 +1,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 |