mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-26 16:14:16 +03:00
20 lines
378 B
Objective-C
20 lines
378 B
Objective-C
//
|
|
// AtomicityAppDelegate.h
|
|
// Atomicity
|
|
//
|
|
// Created by Chris Wanstrath on 8/18/11.
|
|
// Copyright 2011 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AtomicityAppDelegate : NSObject <NSApplicationDelegate> {
|
|
IBOutlet id webView;
|
|
NSWindow *window;
|
|
}
|
|
|
|
@property (assign) IBOutlet id webView;
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
@end
|