mirror of
https://github.com/atom/atom.git
synced 2026-02-11 15:14:59 -05:00
17 lines
331 B
Objective-C
17 lines
331 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;
|
|
- (NSString *)tempfile;
|
|
|
|
@end
|