28 lines
601 B
Objective-C
28 lines
601 B
Objective-C
/* HBMutablePreset.h $
|
|
|
|
This file is part of the HandBrake source code.
|
|
Homepage: <http://handbrake.fr/>.
|
|
It may be used under the terms of the GNU General Public License. */
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <HandBrakeKit/HBPreset.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* A mutable subclass of HBPreset.
|
|
*/
|
|
@interface HBMutablePreset : HBPreset
|
|
|
|
/// Removes unknown keys and normalizes values.
|
|
- (void)cleanUp;
|
|
|
|
- (void)resetBuiltInAndDefaultState;
|
|
|
|
- (void)setObject:(id)obj forKey:(NSString *)key;
|
|
- (void)setObject:(id)obj forKeyedSubscript:(NSString *)key;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|