NewsBlur/media/ios/Classes/FeedDashboardViewController.h

22 lines
425 B
C
Raw Normal View History

2012-06-20 09:32:55 -07:00
//
// FeedDashboardViewController.h
// NewsBlur
//
// Created by Roy Yang on 6/20/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@class NewsBlurAppDelegate;
@interface FeedDashboardViewController : UIViewController {
NewsBlurAppDelegate *appDelegate;
}
2012-07-15 15:06:06 -07:00
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
2012-06-20 09:32:55 -07:00
2012-07-15 15:06:06 -07:00
@property (nonatomic) IBOutlet UIToolbar *toolbar;
2012-06-20 09:32:55 -07:00
@end