18 lines
432 B
Objective-C
18 lines
432 B
Objective-C
/* 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>
|
|
|
|
@class HBPreset;
|
|
@class HBMutablePreset;
|
|
|
|
@protocol HBPresetCoding <NSObject>
|
|
|
|
- (BOOL)applyPreset:(HBPreset *)preset error:(NSError * __autoreleasing *)outError;
|
|
- (void)writeToPreset:(HBMutablePreset *)preset;
|
|
|
|
@end
|