summaryrefslogtreecommitdiffstats
path: root/macosx/QueueController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/QueueController.h')
-rw-r--r--macosx/QueueController.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/macosx/QueueController.h b/macosx/QueueController.h
deleted file mode 100644
index c86ffd4ec..000000000
--- a/macosx/QueueController.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* QueueController */
-
-#include <Cocoa/Cocoa.h>
-
-#include "hb.h"
-
-@interface QueueController : NSObject
-{
- hb_handle_t * fHandle;
- IBOutlet NSScrollView * fScrollView;
- IBOutlet NSView * fTaskView;
-
- /*Display variables for each job in view*/
- NSString * jobFormat;
- NSString * jobPictureDetail;
- NSString * jobVideoDetail;
- NSString * jobVideoCodec;
- NSString * jobVideoQuality;
-
- NSString * jobAudioDetail;
- NSString * jobAudioCodec;
-}
-
-- (void) SetHandle: (hb_handle_t *) handle;
-- (IBAction) Update: (id) sender;
-- (IBAction) ClosePanel: (id) sender;
-
-@end