summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLMaintenanceModeStatus.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/SDLMaintenanceModeStatus.h
parente6e84cc8c23609ab286c64a2c6a3037313f29908 (diff)
downloadsdl_ios-be7622fe60babba90276101db79a515597a9fea1.tar.gz
Initial conversion of all enum objects to SDLEnum typedef.
Diffstat (limited to 'SmartDeviceLink/SDLMaintenanceModeStatus.h')
-rw-r--r--SmartDeviceLink/SDLMaintenanceModeStatus.h30
1 files changed, 5 insertions, 25 deletions
diff --git a/SmartDeviceLink/SDLMaintenanceModeStatus.h b/SmartDeviceLink/SDLMaintenanceModeStatus.h
index cd399e20c..da491e48c 100644
--- a/SmartDeviceLink/SDLMaintenanceModeStatus.h
+++ b/SmartDeviceLink/SDLMaintenanceModeStatus.h
@@ -7,44 +7,24 @@
/**
* The SDLMaintenanceModeStatus class.
*/
-@interface SDLMaintenanceModeStatus : SDLEnum {
-}
-
-/**
- * @abstract Maintenance Mode Status
- * @param value The value of the string to get an object for
- * @return SDLMaintenanceModeStatus
- */
-+ (SDLMaintenanceModeStatus *)valueOf:(NSString *)value;
-
-/**
- * @abstract declare an array that store all possible Maintenance Mode Status inside
- * @return the array
- */
-+ (NSArray *)values;
+typedef SDLEnum SDLMaintenanceModeStatus NS_EXTENSIBLE_STRING_ENUM;
/**
* @abstract Maintenance Mode Status : Normal
- * @return the object with value of *NORMAL*
*/
-+ (SDLMaintenanceModeStatus *)NORMAL;
+extern SDLMaintenanceModeStatus const SDLMaintenanceModeStatusNormal;
/**
* @abstract Maintenance Mode Status : Near
- * @return the object with value of *NEAR*
*/
-+ (SDLMaintenanceModeStatus *)NEAR;
+extern SDLMaintenanceModeStatus const SDLMaintenanceModeStatusNear;
/**
* @abstract Maintenance Mode Status : Active
- * @return the object with value of *ACTIVE*
*/
-+ (SDLMaintenanceModeStatus *)ACTIVE;
+extern SDLMaintenanceModeStatus const SDLMaintenanceModeStatusActive;
/**
* @abstract Maintenance Mode Status : Feature not present
- * @return the object with value of *FEATURE_NOT_PRESENT*
*/
-+ (SDLMaintenanceModeStatus *)FEATURE_NOT_PRESENT;
-
-@end
+extern SDLMaintenanceModeStatus const SDLMaintenanceModeStatusFeatureNotPresent;