/* HBMutablePreset.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 "HBPreset.h" NS_ASSUME_NONNULL_BEGIN /** * A mutable subclass of HBPreset. */ @interface HBMutablePreset : HBPreset /** * Removes unknown keys and normalizes values. */ - (void)cleanUp; - (void)setObject:(id)obj forKey:(NSString *)key; - (void)setObject:(id)obj forKeyedSubscript:(NSString *)key; @end NS_ASSUME_NONNULL_END