summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVehicleDataStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLVehicleDataStatus.h')
-rw-r--r--SmartDeviceLink/SDLVehicleDataStatus.h25
1 files changed, 4 insertions, 21 deletions
diff --git a/SmartDeviceLink/SDLVehicleDataStatus.h b/SmartDeviceLink/SDLVehicleDataStatus.h
index e7720c924..7011b48c3 100644
--- a/SmartDeviceLink/SDLVehicleDataStatus.h
+++ b/SmartDeviceLink/SDLVehicleDataStatus.h
@@ -9,36 +9,19 @@
*
* @since SDL 2.0
*/
-@interface SDLVehicleDataStatus : SDLEnum {
-}
-
-/**
- * Convert String to SDLVehicleDataStatus
- * @param value The value of the string to get an object for
- * @return SDLVehicleDataStatus
- */
-+ (SDLVehicleDataStatus *)valueOf:(NSString *)value;
-
-/**
- * @abstract Store the enumeration of all possible SDLVehicleDataStatus
- * @return an array that store all possible SDLVehicleDataStatus
- */
-+ (NSArray *)values;
+typedef SDLEnum SDLVehicleDataStatus NS_EXTENSIBLE_STRING_ENUM;
/**
* @abstract No data avaliable
- * @return SDLVehicleDataStatus: *NO_DATA_EXISTS*
*/
-+ (SDLVehicleDataStatus *)NO_DATA_EXISTS;
+extern SDLVehicleDataStatus const SDLVehicleDataStatusNoDataExists;
/**
* @abstract return SDLVehicleDataStatus: *OFF*
*/
-+ (SDLVehicleDataStatus *)OFF;
+extern SDLVehicleDataStatus const SDLVehicleDataStatusOff;
/**
* @abstract return SDLVehicleDataStatus: *ON*
*/
-+ (SDLVehicleDataStatus *)ON;
-
-@end
+extern SDLVehicleDataStatus const SDLVehicleDataStatusOn;