hop-2012/gui_ocamlmsgAppDelegate.h

23 lines
433 B
Objective-C

//
// gui_ocamlmsgAppDelegate.h
// gui-ocamlmsg
//
// 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 gui_ocamlmsgAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
WebView *webview;
NSTask *task;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet WebView *webview;
@end