mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
501 B
C
23 lines
501 B
C
![]() |
//
|
||
|
// DashboardViewController.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Roy Yang on 7/10/12.
|
||
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface DashboardViewController : UIViewController {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
UIToolbar *bottomToolbar;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||
|
@property (retain, nonatomic) IBOutlet UIToolbar *bottomToolbar;
|
||
|
|
||
|
- (IBAction)doLogout:(id)sender;
|
||
|
@end
|