summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRegisterAppInterfaceResponse.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-10-20 11:31:05 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-10-20 11:31:05 -0400
commitdfc28adc2373a3aafb4bf3e3535199e4c2c2b217 (patch)
tree4b8b8577d5cc8b60699cb632592d3271fb982470 /SmartDeviceLink/SDLRegisterAppInterfaceResponse.h
parent06cfb4f02ad9f2561302f21f4f38ec5f5ed4372f (diff)
parent05537a2d60ca2de33933077379a34f76305125f9 (diff)
downloadsdl_ios-dfc28adc2373a3aafb4bf3e3535199e4c2c2b217.tar.gz
Merge branch 'feature/issue_425_stringly_typed_enum' into develop
Diffstat (limited to 'SmartDeviceLink/SDLRegisterAppInterfaceResponse.h')
-rw-r--r--SmartDeviceLink/SDLRegisterAppInterfaceResponse.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/SmartDeviceLink/SDLRegisterAppInterfaceResponse.h b/SmartDeviceLink/SDLRegisterAppInterfaceResponse.h
index 8852884a0..79a11dbd3 100644
--- a/SmartDeviceLink/SDLRegisterAppInterfaceResponse.h
+++ b/SmartDeviceLink/SDLRegisterAppInterfaceResponse.h
@@ -4,19 +4,20 @@
#import "SDLRPCResponse.h"
+#import "SDLHMIZoneCapabilities.h"
+#import "SDLLanguage.h"
+#import "SDLPrerecordedSpeech.h"
+#import "SDLSpeechCapabilities.h"
+#import "SDLVRCapabilities.h"
+
@class SDLAudioPassThruCapabilities;
@class SDLButtonCapabilities;
@class SDLDisplayCapabilities;
@class SDLHMICapabilities;
-@class SDLHMIZoneCapabilities;
-@class SDLLanguage;
-@class SDLPrerecordedSpeech;
@class SDLPresetBankCapabilities;
@class SDLSoftButtonCapabilities;
-@class SDLSpeechCapabilities;
@class SDLSyncMsgVersion;
@class SDLVehicleType;
-@class SDLVRCapabilities;
/**
@@ -40,7 +41,7 @@
*
* Optional
*/
-@property (strong) SDLLanguage *language;
+@property (strong) SDLLanguage language;
/**
* The currently active display language on Sync
@@ -50,7 +51,7 @@
*
* Optional
*/
-@property (strong) SDLLanguage *hmiDisplayLanguage;
+@property (strong) SDLLanguage hmiDisplayLanguage;
/**
* @see SDLDisplayCapabilities
@@ -89,28 +90,28 @@
*
* Optional, Array of length 1 - 100, of SDLHMIZoneCapabilities
*/
-@property (strong) NSMutableArray<SDLHMIZoneCapabilities *> *hmiZoneCapabilities;
+@property (strong) NSMutableArray<SDLHMIZoneCapabilities> *hmiZoneCapabilities;
/**
* @see SDLSpeechCapabilities
*
* Optional, Array of length 1 - 100, of SDLSpeechCapabilities
*/
-@property (strong) NSMutableArray<SDLSpeechCapabilities *> *speechCapabilities;
+@property (strong) NSMutableArray<SDLSpeechCapabilities> *speechCapabilities;
/**
* @see SDLPrerecordedSpeech
*
* Optional, Array of length 1 - 100, of SDLPrerecordedSpeech
*/
-@property (strong) NSMutableArray<SDLPrerecordedSpeech *> *prerecordedSpeech;
+@property (strong) NSMutableArray<SDLPrerecordedSpeech> *prerecordedSpeech;
/**
* @see SDLVRCapabilities
*
* Optional, Array of length 1 - 100, of SDLVRCapabilities
*/
-@property (strong) NSMutableArray<SDLVRCapabilities *> *vrCapabilities;
+@property (strong) NSMutableArray<SDLVRCapabilities> *vrCapabilities;
/**
* @see SDLAudioPassThruCapabilities