hop-2012/gui_ocamlmsgAppDelegate.h

23 lines
433 B
C
Raw Normal View History

2012-05-01 15:13:56 +00:00
//
// 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>
2012-05-01 17:16:53 +00:00
#import <WebKit/WebKit.h>
2012-05-01 15:13:56 +00:00
@interface gui_ocamlmsgAppDelegate : NSObject <NSApplicationDelegate> {
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