blob: f5bae80d1dc7e1c441b05ba3bd8f206a2409772f (
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
|
// SDLOnLanguageChange.h
//
#import "SDLRPCNotification.h"
#import "SDLLanguage.h"
/**
* Provides information to what language the SDL HMI language was changed
*
* @since SDL 2.0
*/
@interface SDLOnLanguageChange : SDLRPCNotification
/**
* @abstract Current SDL voice engine (VR+TTS) language
*/
@property (strong) SDLLanguage language;
/**
* @abstract Current display language
*/
@property (strong) SDLLanguage hmiDisplayLanguage;
@end
|