// // SourcesEditViewController.h // PicCast // // Created by Matthew Handler on 4/20/11. // Copyright 2011 Earl Industries. All rights reserved. // #import @protocol SourcesEditViewControllerDelegate; @interface SourcesEditViewController : UIViewController { id delegate; } @property (nonatomic, assign) id delegate; @property (nonatomic, retain) IBOutlet UITableView *tableView; - (IBAction)done:(id)sender; @end @protocol SourcesEditViewControllerDelegate - (void)sourcesEditViewControllerDelegateDidFinish:(SourcesEditViewController *)controller; @end