Initial commit

This commit is contained in:
Allan Odgaard
2012-08-09 16:25:56 +02:00
commit 9894969e67
1103 changed files with 215580 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#import <oak/debug.h>
@class HOStatusBar;
@class HOWebViewDelegateHelper;
@interface HOBrowserView : NSView
{
OBJC_WATCH_LEAKS(HOBrowserView);
WebView* webView;
HOStatusBar* statusBar;
HOWebViewDelegateHelper* webViewDelegateHelper;
}
@property (nonatomic, readonly) WebView* webView;
@property (nonatomic, retain) NSString* projectUUID;
- (void)setUpdatesProgress:(BOOL)flag;
@end