hop-2012/hopOsxAppDelegate.h

23 lines
415 B
Objective-C

//
// hopOsxAppDelegate.h
// hopOsx
//
// Created by Tony Garnock-Jones on 2012-05-01.
// Copyright 2012 n/a. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface hopOsxAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
WebView *webview;
NSTask *task;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet WebView *webview;
@end