1 /*  HBAttributedStringAdditions.h $
2 
3  This file is part of the HandBrake source code.
4  Homepage: <http://handbrake.fr/>.
5  It may be used under the terms of the GNU General Public License. */
6 
7 #import <Cocoa/Cocoa.h>
8 
9 NS_ASSUME_NONNULL_BEGIN
10 
11 @interface NSString (HBAttributedStringAdditions)
12 
13 - (NSAttributedString *)HB_monospacedString;
14 - (NSAttributedString *)HB_smallMonospacedString;
15 
16 @end
17 
18 @interface NSMutableAttributedString (HBAttributedStringAdditions)
19 
20 - (void)appendString:(NSString *)aString withAttributes:(NSDictionary *)aDictionary;
21 
22 @end
23 
24 NS_ASSUME_NONNULL_END
25