mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
27 lines
637 B
Objective-C
27 lines
637 B
Objective-C
//
|
|
// OriginalStoryViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 11/13/10.
|
|
// Copyright 2010 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface OriginalStoryViewController : UIViewController {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
IBOutlet UIBarButtonItem * closeButton;
|
|
UIWebView *webView;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic, retain) IBOutlet UIBarButtonItem *closeButton;
|
|
@property (nonatomic, retain) IBOutlet UIWebView *webView;
|
|
|
|
- (IBAction) doCloseOriginalStoryViewController;
|
|
|
|
@end
|