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