mirror of
https://github.com/atom/atom.git
synced 2026-02-11 07:05:11 -05:00
16 lines
408 B
Objective-C
16 lines
408 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;
|
|
|
|
- (id)storageGet:(NSString *)keyPath defaultValue:(id)defaultValue;
|
|
- (id)storageSet:(NSString *)keyPath value:(id)value;
|
|
|
|
@end
|