summaryrefslogtreecommitdiffstats
path: root/Classes/SourcesEditViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/SourcesEditViewController.h')
-rw-r--r--Classes/SourcesEditViewController.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/Classes/SourcesEditViewController.h b/Classes/SourcesEditViewController.h
new file mode 100644
index 0000000..3e59f63
--- /dev/null
+++ b/Classes/SourcesEditViewController.h
@@ -0,0 +1,27 @@
+//
+// SourcesEditViewController.h
+// PicCast
+//
+// Created by Matthew Handler on 4/20/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@protocol SourcesEditViewControllerDelegate;
+
+@interface SourcesEditViewController : UIViewController <UITableViewDataSource> {
+ id <SourcesEditViewControllerDelegate> delegate;
+}
+
+@property (nonatomic, assign) id <SourcesEditViewControllerDelegate> delegate;
+@property (nonatomic, retain) IBOutlet UITableView *tableView;
+
+- (IBAction)done:(id)sender;
+
+@end
+
+
+@protocol SourcesEditViewControllerDelegate
+- (void)sourcesEditViewControllerDelegateDidFinish:(SourcesEditViewController *)controller;
+@end \ No newline at end of file