mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
32 lines
883 B
Objective-C
32 lines
883 B
Objective-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;
|
|
@class ASIHTTPRequest;
|
|
@class InteractionsModule;
|
|
@class ActivityModule;
|
|
|
|
@interface DashboardViewController : UIViewController <UIPopoverControllerDelegate> {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
InteractionsModule *interactionsModule;
|
|
ActivityModule *activitiesModule;
|
|
}
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet InteractionsModule *interactionsModule;
|
|
@property (nonatomic) IBOutlet ActivityModule *activitiesModule;
|
|
|
|
- (IBAction)doLogout:(id)sender;
|
|
- (void)refreshInteractions;
|
|
- (void)refreshActivity;
|
|
- (void)finishLoadActivities:(ASIHTTPRequest *)request;
|
|
- (void)requestFailed:(ASIHTTPRequest *)request;
|
|
@end
|