// // DashboardViewController.h // NewsBlur // // Created by Roy Yang on 7/10/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import @class NewsBlurAppDelegate; @class ASIHTTPRequest; @interface DashboardViewController : UIViewController { NewsBlurAppDelegate *appDelegate; UIToolbar *bottomToolbar; UITableView *interactionsTable; } @property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate; @property (retain, nonatomic) IBOutlet UIToolbar *bottomToolbar; @property (retain, nonatomic) IBOutlet UITableView *interactionsTable; - (IBAction)doLogout:(id)sender; - (void)refreshInteractions; - (void)finishLoadInteractions:(ASIHTTPRequest *)request; - (void)requestFailed:(ASIHTTPRequest *)request; @end