summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPowerModeStatus.h
blob: 8eb24fdb4ed949178f1a310ac37ffe619e29b244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  SDLPowerModeStatus.h
//


#import "SDLEnum.h"

@interface SDLPowerModeStatus : SDLEnum {
}

+ (SDLPowerModeStatus *)valueOf:(NSString *)value;
+ (NSArray *)values;

+ (SDLPowerModeStatus *)KEY_OUT;
+ (SDLPowerModeStatus *)KEY_RECENTLY_OUT;
+ (SDLPowerModeStatus *)KEY_APPROVED_0;
+ (SDLPowerModeStatus *)POST_ACCESORY_0;
+ (SDLPowerModeStatus *)ACCESORY_1;
+ (SDLPowerModeStatus *)POST_IGNITION_1;
+ (SDLPowerModeStatus *)IGNITION_ON_2;
+ (SDLPowerModeStatus *)RUNNING_2;
+ (SDLPowerModeStatus *)CRANK_3;

@end