pulsar/AtomicityAppDelegate.h
Chris Wanstrath 3a09528a62 try it out
2011-08-18 21:11:59 -07:00

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