/* HBEncodingProgressHUDController.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 "HBHUD.h" NS_ASSUME_NONNULL_BEGIN @protocol HBEncodingProgressHUDControllerDelegate - (void)cancelEncoding; @end @interface HBEncodingProgressHUDController : NSViewController @property (nonatomic, nullable, assign) id delegate; @property (nonatomic) NSString *info; @property (nonatomic) double progress; @end NS_ASSUME_NONNULL_END