summaryrefslogtreecommitdiffstats
path: root/Classes/SourcesEditViewController.h
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-25 02:21:36 -0400
committermatt handler <matt.handler@gmail.com>2011-04-25 02:21:36 -0400
commitab0c357216564967ccbb900923ead3830a13752b (patch)
tree1b3aa223efb245d47b9c6ba785d2db4e911fd62a /Classes/SourcesEditViewController.h
parent0c7a7586d3c2ab22adb15f032b0a69c962aaeeaf (diff)
downloadpiccast-app-ab0c357216564967ccbb900923ead3830a13752b.tar.gz
piccast-app-ab0c357216564967ccbb900923ead3830a13752b.zip
added json stuff, sources are loading but not connected to any sensical database or nothing... coming together. next hard bit is going to be the animation when things update
Diffstat (limited to 'Classes/SourcesEditViewController.h')
-rw-r--r--Classes/SourcesEditViewController.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Classes/SourcesEditViewController.h b/Classes/SourcesEditViewController.h
index 3e59f63..1506242 100644
--- a/Classes/SourcesEditViewController.h
+++ b/Classes/SourcesEditViewController.h
@@ -7,11 +7,14 @@
//
#import <UIKit/UIKit.h>
+#import "SectionDictionary.h"
@protocol SourcesEditViewControllerDelegate;
-@interface SourcesEditViewController : UIViewController <UITableViewDataSource> {
+@interface SourcesEditViewController : UIViewController <UITableViewDataSource, NSURLProtocolClient> {
id <SourcesEditViewControllerDelegate> delegate;
+ NSMutableData *_receivedData;
+ SectionDictionary *sectionDictionary;
}
@property (nonatomic, assign) id <SourcesEditViewControllerDelegate> delegate;