omlapp/OML/OMLAppDelegate.h

20 lines
382 B
C
Raw Normal View History

//
// 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