diff options
Diffstat (limited to 'macosx/NSDictionary+HBAdditions.h')
-rw-r--r-- | macosx/NSDictionary+HBAdditions.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/macosx/NSDictionary+HBAdditions.h b/macosx/NSDictionary+HBAdditions.h new file mode 100644 index 000000000..974739b9f --- /dev/null +++ b/macosx/NSDictionary+HBAdditions.h @@ -0,0 +1,19 @@ +/* NSDictionary+HBAdditions.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> +#include "hb_dict.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface NSDictionary (HBAddtions) + +- (instancetype)initWithHBDict:(const hb_dict_t *)dict; +- (hb_dict_t *)hb_dictValue; + +@end + +NS_ASSUME_NONNULL_END |