summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitle.h
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2015-10-24 10:52:15 +0200
committerDamiano Galassi <[email protected]>2015-10-24 10:52:15 +0200
commit3de7c8834a931ee2fdaa820241e208446cc5f08f (patch)
tree7a7bd0c5aa66ee2a4a88fa89cd44dadbbf9c7c30 /macosx/HBTitle.h
parent7e32b94a04e073aa94b51811200b664a5001f983 (diff)
MacGui: add type parameter to some arrays.
Diffstat (limited to 'macosx/HBTitle.h')
-rw-r--r--macosx/HBTitle.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/macosx/HBTitle.h b/macosx/HBTitle.h
index 1c0ddc963..898166d6f 100644
--- a/macosx/HBTitle.h
+++ b/macosx/HBTitle.h
@@ -8,6 +8,8 @@
NS_ASSUME_NONNULL_BEGIN
+@class HBChapter;
+
/**
* HBTitles is an interface to the low-level hb_title_t.
* the properties are lazy-loaded.
@@ -38,9 +40,9 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, readonly) int autoCropLeft;
@property (nonatomic, readonly) int autoCropRight;
-@property (nonatomic, readonly) NSArray *audioTracks;
-@property (nonatomic, readonly) NSArray *subtitlesTracks;
-@property (nonatomic, readonly) NSArray *chapters;
+@property (nonatomic, readonly) NSArray<NSDictionary<NSString *, id> *> *audioTracks;
+@property (nonatomic, readonly) NSArray<NSDictionary<NSString *, id> *> *subtitlesTracks;
+@property (nonatomic, readonly) NSArray<HBChapter *> *chapters;
@end