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