/* HBQueueController.h
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
#import
@class HBController;
@class HBCore;
@interface HBQueueController : NSWindowController
- (void)setPidNum: (int)myPidnum;
- (void)setCore: (HBCore *)core;
- (void)setHBController: (HBController *)controller;
- (void)setQueueArray: (NSMutableArray *)QueueFileArray;
- (void)setQueueStatusString: (NSString *)statusString;
- (IBAction)showQueueWindow: (id)sender;
@end