summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLNavigationAction.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLNavigationAction.h')
-rw-r--r--SmartDeviceLink/SDLNavigationAction.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLNavigationAction.h b/SmartDeviceLink/SDLNavigationAction.h
new file mode 100644
index 000000000..922ab404b
--- /dev/null
+++ b/SmartDeviceLink/SDLNavigationAction.h
@@ -0,0 +1,49 @@
+//
+// SDLNavigationAction.h
+// SmartDeviceLink
+//
+// Created by Nicole on 2/22/19.
+// Copyright © 2019 smartdevicelink. All rights reserved.
+//
+
+#import "SDLEnum.h"
+
+/*
+ * A navigation action.
+ */
+typedef SDLEnum SDLNavigationAction SDL_SWIFT_ENUM;
+
+/*
+ * Using this action plus a supplied direction can give the type of turn.
+ */
+extern SDLNavigationAction const SDLNavigationActionTurn;
+
+/*
+ * A navigation action of exit.
+ */
+extern SDLNavigationAction const SDLNavigationActionExit;
+
+/*
+ * A navigation action of stay.
+ */
+extern SDLNavigationAction const SDLNavigationActionStay;
+
+/*
+ * A navigation action of merge.
+ */
+extern SDLNavigationAction const SDLNavigationActionMerge;
+
+/*
+ * A navigation action of ferry.
+ */
+extern SDLNavigationAction const SDLNavigationActionFerry;
+
+/*
+ * A navigation action of car shuttle train.
+ */
+extern SDLNavigationAction const SDLNavigationActionCarShuttleTrain;
+
+/*
+ * A navigation action of waypoint.
+ */
+extern SDLNavigationAction const SDLNavigationActionWaypoint;