2014-12-27 10:46:04 +00:00
|
|
|
/* HBPresetCoding.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>
|
|
|
|
|
2016-02-26 09:50:16 +01:00
|
|
|
@class HBPreset;
|
|
|
|
@class HBMutablePreset;
|
2014-12-27 10:46:04 +00:00
|
|
|
|
2015-10-13 10:22:02 +02:00
|
|
|
@protocol HBPresetCoding <NSObject>
|
2014-12-27 10:46:04 +00:00
|
|
|
|
2021-09-22 11:47:15 +02:00
|
|
|
- (BOOL)applyPreset:(HBPreset *)preset error:(NSError * __autoreleasing *)outError;
|
2015-10-13 10:22:02 +02:00
|
|
|
- (void)writeToPreset:(HBMutablePreset *)preset;
|
2014-12-27 10:46:04 +00:00
|
|
|
|
2016-10-29 13:24:01 +02:00
|
|
|
@end
|