mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
17 lines
353 B
Objective-C
Executable File
17 lines
353 B
Objective-C
Executable File
#import "include/cef.h"
|
|
#import "include/cef_application_mac.h"
|
|
|
|
@class AtomController;
|
|
|
|
@interface Atom : NSApplication<CefAppProtocol> {
|
|
BOOL handlingSendEvent_;
|
|
}
|
|
|
|
- (void)open:(NSString *)path;
|
|
- (IBAction)runSpecs:(id)sender;
|
|
|
|
@end
|
|
|
|
// Returns the application settings based on command line arguments.
|
|
void AppGetSettings(CefSettings& settings);
|