/* HBQueueDetailsViewController.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 #import "HBQueueItem.h" NS_ASSUME_NONNULL_BEGIN @protocol HBQueueDetailsViewControllerDelegate - (void)detailsViewEditItem:(id)item; - (void)detailsViewResetItem:(id)item; @end @interface HBQueueInfoViewController : NSViewController - (instancetype)initWithDelegate:(id)delegate; @property (nonatomic) id item; @end NS_ASSUME_NONNULL_END