diff options
author | ritsuka <[email protected]> | 2014-12-22 07:55:39 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-22 07:55:39 +0000 |
commit | a052152ebb5b1844ca76ca65b1fed359307e8ad4 (patch) | |
tree | df12b6ae8d8e02c3aa9f835d4f828bea00501607 /macosx/HBVideo.h | |
parent | 546f57a1402492f2aedeab1ca6cf9f3d3201795f (diff) |
MacGui: implement NSCoding protocol in HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6638 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideo.h')
-rw-r--r-- | macosx/HBVideo.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/macosx/HBVideo.h b/macosx/HBVideo.h index 72208ae8a..837aaaeb2 100644 --- a/macosx/HBVideo.h +++ b/macosx/HBVideo.h @@ -5,12 +5,11 @@ It may be used under the terms of the GNU General Public License. */ #import <Foundation/Foundation.h> -#include "hb.h" /** * HBVideo */ -@interface HBVideo : NSObject +@interface HBVideo : NSObject <NSCoding> - (void)applySettingsFromPreset:(NSDictionary *)preset; - (void)prepareVideoForPreset:(NSMutableDictionary *)preset; @@ -27,7 +26,6 @@ @property (nonatomic, readwrite) int frameRate; @property (nonatomic, readwrite) int frameRateMode; -@property (nonatomic, readwrite) BOOL fastFirstPass; @property (nonatomic, readwrite) BOOL twoPass; @property (nonatomic, readwrite) BOOL turboTwoPass; |