20 lines
382 B
C
20 lines
382 B
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
|