summaryrefslogtreecommitdiffstats
path: root/Classes/SourcesEditViewController.h
diff options
context:
space:
mode:
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;