omlapp/OML/OMLAppDelegate.h
2015-11-29 15:01:04 +01:00

19 lines
382 B
Objective-C

//
// OMLAppDelegate.h
// OML
//
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
#include "WebStorageManagerPrivate.h"
#include "WebPreferencesPrivate.h"
@interface OMLAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
IBOutlet WebView *webView;
}
@property (assign) IBOutlet NSWindow *window;
@property (nonatomic, retain) IBOutlet WebView *webView;
@end