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-19 11:26:17 -07:00
|
|
|
UILabel *storyLabel;
|
|
|
|
|
2012-06-20 09:32:55 -07:00
|
|
|
}
|
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2012-06-20 09:32:55 -07:00
|
|
|
|
2012-07-19 11:26:17 -07:00
|
|
|
@property (nonatomic) IBOutlet UILabel *storyLabel;
|
2012-06-20 09:32:55 -07:00
|
|
|
|
|
|
|
@end
|