summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrettyWhite <geekman3454@protonmail.com>2017-07-20 13:09:14 -0400
committerBrettyWhite <geekman3454@protonmail.com>2017-07-20 13:09:14 -0400
commit820263ba4af3b995153d2494c95a0b74d3aaeb57 (patch)
tree9dfbff99b041dfcd07f87caa0e6496960ea0ae69
parentad61d4208a8cc8fcf477e457b934af815834e79b (diff)
downloadsdl_ios-feature/implement_SDL_0031_Mobile_Projection_v5.0.tar.gz
-rw-r--r--SmartDeviceLink/SDLAppHMIType.h5
-rw-r--r--SmartDeviceLink/SDLAppHMIType.m1
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m1
3 files changed, 7 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLAppHMIType.h b/SmartDeviceLink/SDLAppHMIType.h
index a7277c36a..2c02fe498 100644
--- a/SmartDeviceLink/SDLAppHMIType.h
+++ b/SmartDeviceLink/SDLAppHMIType.h
@@ -46,6 +46,11 @@ extern SDLAppHMIType const SDLAppHMITypeInformation;
*/
extern SDLAppHMIType const SDLAppHMITypeSocial;
+/**
+ * @abstract App dealing with Mobile Projection applications
+ */
+extern SDLAppHMIType const SDLAppHMITypeProjection;
+
extern SDLAppHMIType const SDLAppHMITypeBackgroundProcess;
/**
diff --git a/SmartDeviceLink/SDLAppHMIType.m b/SmartDeviceLink/SDLAppHMIType.m
index 8c06cb60f..5ce899cf5 100644
--- a/SmartDeviceLink/SDLAppHMIType.m
+++ b/SmartDeviceLink/SDLAppHMIType.m
@@ -11,6 +11,7 @@ SDLAppHMIType const SDLAppHMITypeMessaging = @"MESSAGING";
SDLAppHMIType const SDLAppHMITypeNavigation = @"NAVIGATION";
SDLAppHMIType const SDLAppHMITypeInformation = @"INFORMATION";
SDLAppHMIType const SDLAppHMITypeSocial = @"SOCIAL";
+SDLAppHMIType const SDLAppHMITypeProjection = @"PROJECTION";
SDLAppHMIType const SDLAppHMITypeBackgroundProcess = @"BACKGROUND_PROCESS";
SDLAppHMIType const SDLAppHMITypeTesting = @"TESTING";
SDLAppHMIType const SDLAppHMITypeSystem = @"SYSTEM";
diff --git a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m
index eb23c5ff8..037c569be 100644
--- a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m
@@ -21,6 +21,7 @@ describe(@"Individual Enum Value Tests", ^ {
expect(SDLAppHMITypeNavigation).to(equal(@"NAVIGATION"));
expect(SDLAppHMITypeInformation).to(equal(@"INFORMATION"));
expect(SDLAppHMITypeSocial).to(equal(@"SOCIAL"));
+ expect(SDLAppHMITypeProjection).to(equal(@"PROJECTION"));
expect(SDLAppHMITypeBackgroundProcess).to(equal(@"BACKGROUND_PROCESS"));
expect(SDLAppHMITypeTesting).to(equal(@"TESTING"));
expect(SDLAppHMITypeSystem).to(equal(@"SYSTEM"));