/* HBQueueItemView.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 HBQueueItemViewDelegate - (void)revealQueueItem:(id)item; - (void)removeQueueItem:(id)item; @end @interface HBQueueItemView : NSTableCellView @property (nonatomic, weak, nullable) id item; @property (nonatomic, weak, nullable) id delegate; @end NS_ASSUME_NONNULL_END