diff options
Diffstat (limited to 'macosx/HBPlayerTrack.h')
-rw-r--r-- | macosx/HBPlayerTrack.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/macosx/HBPlayerTrack.h b/macosx/HBPlayerTrack.h new file mode 100644 index 000000000..950fdfdda --- /dev/null +++ b/macosx/HBPlayerTrack.h @@ -0,0 +1,21 @@ +/* HBPlayerTrack.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> + +NS_ASSUME_NONNULL_BEGIN + +@interface HBPlayerTrack : NSObject + +- (instancetype)initWithTrackName:(NSString *)name object:(id)representedObject enabled:(BOOL)enabled; + +@property (nonatomic, readonly) NSString *name; +@property (nonatomic, readwrite) BOOL enabled; +@property (nonatomic, readonly) id representedObject; + +@end + +NS_ASSUME_NONNULL_END
\ No newline at end of file |