summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLOnLanguageChange.h
blob: b794edcd16ea6decc1fb491bccaa9e4ee4d9fe63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//  SDLOnLanguageChange.h
//

#import "SDLRPCNotification.h"

@class SDLLanguage;


/**
 * Provides information to what language the SDL HMI language was changed
 *
 * @since SDL 2.0
 */
@interface SDLOnLanguageChange : SDLRPCNotification {
}

/**
 *Constructs a newly allocated SDLOnLanguageChange object
 */
- (instancetype)init;

/**
 * Constructs a newly allocated SDLOnLanguageChange object indicated by the dictionary parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

/**
 * @abstract Current SDL voice engine (VR+TTS) language
 */
@property (strong) SDLLanguage *language;

/**
 * @abstract Current display language
 */
@property (strong) SDLLanguage *hmiDisplayLanguage;

@end