mirror of
https://github.com/atom/atom.git
synced 2026-02-11 07:05:11 -05:00
16 lines
307 B
Objective-C
16 lines
307 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@class JSCocoa;
|
|
@class WebView;
|
|
|
|
@interface AtomController : NSWindowController <NSWindowDelegate> {
|
|
}
|
|
|
|
@property (retain) WebView *webView;
|
|
@property (retain, readonly) NSString *path;
|
|
@property (retain) JSCocoa *jscocoa;
|
|
|
|
- (AtomController *)initWithPath:(NSString *)aPath;
|
|
|
|
@end
|