mirror of
https://github.com/atom/atom.git
synced 2026-02-11 07:05:11 -05:00
13 lines
285 B
Objective-C
13 lines
285 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@class AtomController;
|
|
|
|
@interface AtomApp : NSApplication <NSApplicationDelegate>
|
|
|
|
@property (nonatomic, retain) NSMutableArray *controllers;
|
|
|
|
- (AtomController *)createController:(NSString *)path;
|
|
- (void)removeController:(AtomController *)controller;
|
|
|
|
@end
|