summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLCarModeStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLCarModeStatus.h')
-rw-r--r--SmartDeviceLink/SDLCarModeStatus.h16
1 files changed, 5 insertions, 11 deletions
diff --git a/SmartDeviceLink/SDLCarModeStatus.h b/SmartDeviceLink/SDLCarModeStatus.h
index 15bb7b284..03b8cf126 100644
--- a/SmartDeviceLink/SDLCarModeStatus.h
+++ b/SmartDeviceLink/SDLCarModeStatus.h
@@ -7,26 +7,20 @@
/** Describes the carmode the vehicle is in.
* <b>Since</b> SmartDeviceLink 2.0
*/
-@interface SDLCarModeStatus : SDLEnum {
-}
+typedef SDLEnum SDLCarModeStatus NS_EXTENSIBLE_STRING_ENUM;
-+ (SDLCarModeStatus *)valueOf:(NSString *)value;
-
-+ (NSArray *)values;
/** Provides carmode NORMAL to each module.
*/
-+ (SDLCarModeStatus *)NORMAL;
+extern SDLCarModeStatus const SDLCarModeStatusNormal;
/** Provides carmode FACTORY to each module.
*/
-+ (SDLCarModeStatus *)FACTORY;
+extern SDLCarModeStatus const SDLCarModeStatusFactory;
/** Provides carmode TRANSPORT to each module.
*/
-+ (SDLCarModeStatus *)TRANSPORT;
+extern SDLCarModeStatus const SDLCarModeStatusTransport;
/** Provides carmode CRASH to each module.
*/
-+ (SDLCarModeStatus *)CRASH;
-
-@end
+extern SDLCarModeStatus const SDLCarModeStatusCrash;