summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSystemAction.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLSystemAction.h')
-rw-r--r--SmartDeviceLink/SDLSystemAction.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLSystemAction.h b/SmartDeviceLink/SDLSystemAction.h
new file mode 100644
index 000000000..55371e87d
--- /dev/null
+++ b/SmartDeviceLink/SDLSystemAction.h
@@ -0,0 +1,39 @@
+// SDLSystemAction.h
+//
+
+
+#import "SDLEnum.h"
+
+/**
+ *
+ * Enumeration that describes system actions that can be triggered.
+ */
+@interface SDLSystemAction : SDLEnum {
+}
+
+/**
+ * Convert String to SDLSystemAction
+ * @param value String
+ * @return SDLSystemAction
+ */
++ (SDLSystemAction *)valueOf:(NSString *)value;
+/**
+ @abstract Store the enumeration of all possible SDLSystemAction
+ @return an array that store all possible SDLSystemAction
+ */
++ (NSArray *)values;
+
+/**
+ @abstract Default_Action
+ */
++ (SDLSystemAction *)DEFAULT_ACTION;
+/**
+ @abstract Steal_Focus
+ */
++ (SDLSystemAction *)STEAL_FOCUS;
+/**
+ @abstract Keep_Context
+ */
++ (SDLSystemAction *)KEEP_CONTEXT;
+
+@end