diff options
Diffstat (limited to 'macosx/HBPlayerTrack.m')
-rw-r--r-- | macosx/HBPlayerTrack.m | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/macosx/HBPlayerTrack.m b/macosx/HBPlayerTrack.m new file mode 100644 index 000000000..1be7bc6d5 --- /dev/null +++ b/macosx/HBPlayerTrack.m @@ -0,0 +1,22 @@ +/* HBPlayerTrack.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 "HBPlayerTrack.h" + +@implementation HBPlayerTrack + +- (instancetype)initWithTrackName:(NSString *)name object:(id)representedObject enabled:(BOOL)enabled +{ + self = [super init]; + if (self) { + _name = name; + _enabled = enabled; + _representedObject = representedObject; + } + return self; +} + +@end |