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, 5 insertions, 0 deletions
diff --git a/Classes/SourcesEditViewController.h b/Classes/SourcesEditViewController.h
index 1506242..e7f2de9 100644
--- a/Classes/SourcesEditViewController.h
+++ b/Classes/SourcesEditViewController.h
@@ -8,6 +8,7 @@
#import <UIKit/UIKit.h>
#import "SectionDictionary.h"
+#import "FMDatabase.h"
@protocol SourcesEditViewControllerDelegate;
@@ -15,12 +16,16 @@
id <SourcesEditViewControllerDelegate> delegate;
NSMutableData *_receivedData;
SectionDictionary *sectionDictionary;
+ FMDatabase *db;
}
@property (nonatomic, assign) id <SourcesEditViewControllerDelegate> delegate;
@property (nonatomic, retain) IBOutlet UITableView *tableView;
- (IBAction)done:(id)sender;
+- (void) loadSourcesFromDb;
+- (void) addSourcesFromJson:(NSData *)data;
+- (void) switchedOnOff:(id)sender;
@end