class library: Spawner - don't access PriorityQueue-array
[supercollider.git] / editors / scapp / include / HTMLRenderer.h
blobb82747a4d6fc7e5495c8accee9f844b43ee65c84
1 #import <Cocoa/Cocoa.h>
2 #import <WebKit/WebKit.h>
4 @interface HTMLRenderer : NSObject {
5 NSConditionLock *renderLock;
6 WebView *renderWebView;
7 int finishedRendering;
10 + (NSAttributedString *) attributedStringWithURL:(NSURL *)url;
11 - (NSAttributedString *) attributedStringWithURL:(NSURL *)url;
12 @end