summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnLanguageChange.h
blob: 4937c70fd89ef39575cb6bb529a1a3ac7f3602f0 (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
//  SDLOnLanguageChange.h
//

#import "SDLRPCNotification.h"

#import "SDLLanguage.h"


/**
 * Provides information to what language the SDL HMI language was changed
 *
 * @since SDL 2.0
 */

NS_ASSUME_NONNULL_BEGIN

@interface SDLOnLanguageChange : SDLRPCNotification

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

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

@end

NS_ASSUME_NONNULL_END