summaryrefslogtreecommitdiffstats
path: root/macosx/HBRange.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-22 17:12:16 +0000
committerritsuka <[email protected]>2014-12-22 17:12:16 +0000
commitee10e1fdb417c7f1047406522379c85c47143bfd (patch)
tree1ed8f1ae02ee7296162c640bb238a425af93a02b /macosx/HBRange.m
parent6bcb7bd0894f9f44637b9668e5b5d3d388aef152 (diff)
MacGui: set the chapter titles directly in HBJob. Move more things over to HBTitle and HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6642 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBRange.m')
-rw-r--r--macosx/HBRange.m26
1 files changed, 26 insertions, 0 deletions
diff --git a/macosx/HBRange.m b/macosx/HBRange.m
new file mode 100644
index 000000000..be39652ef
--- /dev/null
+++ b/macosx/HBRange.m
@@ -0,0 +1,26 @@
+/* HBRange.m $
+
+ 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 "HBRange.h"
+#import "NSCodingMacro.h"
+
+@implementation HBRange
+
+#pragma mark - NSCoding
+
+- (void)encodeWithCoder:(NSCoder *)coder
+{
+ [coder encodeInt:1 forKey:@"HBRangeVersion"];
+}
+
+- (id)initWithCoder:(NSCoder *)decoder
+{
+ self = [super init];
+
+ return self;
+}
+
+@end