summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-21 12:13:36 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-21 12:13:36 -0700
commitbe7622fe60babba90276101db79a515597a9fea1 (patch)
tree8bbcc0a3433ae8e42fa2204c9a36712cce0203ca /SmartDeviceLink/SDLVehicleDataNotificationStatus.h
parente6e84cc8c23609ab286c64a2c6a3037313f29908 (diff)
downloadsdl_ios-be7622fe60babba90276101db79a515597a9fea1.tar.gz
Initial conversion of all enum objects to SDLEnum typedef.
Diffstat (limited to 'SmartDeviceLink/SDLVehicleDataNotificationStatus.h')
-rw-r--r--SmartDeviceLink/SDLVehicleDataNotificationStatus.h26
1 files changed, 5 insertions, 21 deletions
diff --git a/SmartDeviceLink/SDLVehicleDataNotificationStatus.h b/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
index 24a3fc372..8ca89e15e 100644
--- a/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
+++ b/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
@@ -9,40 +9,24 @@
*
* @since SDL 2.0
*/
-@interface SDLVehicleDataNotificationStatus : SDLEnum {
-}
-
-/**
- * Convert String to SDLVehicleDataNotificationStatus
- * @param value The value of the string to get an object for
- * @return SDLVehicleDataNotificationStatus
- */
-+ (SDLVehicleDataNotificationStatus *)valueOf:(NSString *)value;
-
-/**
- * @abstract Store the enumeration of all possible SDLVehicleDataNotificationStatus
- * @return an array that store all possible SDLVehicleDataNotificationStatus
- */
-+ (NSArray *)values;
+typedef SDLEnum SDLVehicleDataNotificationStatus NS_EXTENSIBLE_STRING_ENUM;
/**
* @abstract SDLVehicleDataNotificationStatus: *NOT_SUPPORTED*
*/
-+ (SDLVehicleDataNotificationStatus *)NOT_SUPPORTED;
+extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusNotSupported;
/**
@abstract SDLVehicleDataNotificationStatus: *NORMAL*
*/
-+ (SDLVehicleDataNotificationStatus *)NORMAL;
+extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusNormal;
/**
@abstract SDLVehicleDataNotificationStatus: *ACTIVE*
*/
-+ (SDLVehicleDataNotificationStatus *)ACTIVE;
+extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusActive;
/**
@abstract SDLVehicleDataNotificationStatus: *NOT_USED*
*/
-+ (SDLVehicleDataNotificationStatus *)NOT_USED;
-
-@end
+extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusNotUsed;