mirror of
https://github.com/atom/atom.git
synced 2026-01-25 14:59:03 -05:00
16 lines
303 B
Objective-C
16 lines
303 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@class JSCocoa;
|
|
@class WebView;
|
|
|
|
@interface AtomController : NSWindowController <NSWindowDelegate> {
|
|
}
|
|
|
|
@property (retain) WebView *webView;
|
|
@property (retain, readonly) NSString *url;
|
|
@property (retain) JSCocoa *jscocoa;
|
|
|
|
- (AtomController *)initWithURL:(NSString *)url;
|
|
|
|
@end
|