hop-2012/hopOsxAppDelegate.h

23 lines
415 B
C
Raw Normal View History

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