//
//  WebKitTestAppDelegate.h
//  WebKitTest
//
//  Created by Lieven Dekeyser on 19/11/09.
//  Copyright 2009 Lieven Dekeyser. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>


@interface WebKitTestAppDelegate : NSObject <NSApplicationDelegate> {
    NSWindow *window;
	IBOutlet WebView * webView;
}

@property (assign) IBOutlet NSWindow *window;

- (IBAction)setBackgroundColor:(id)sender;

@end
