├── .clang-format ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── best-practice.yml │ ├── bug-report.yml │ ├── config.yml │ └── internal-proposal.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Cartfile.private ├── Cartfile.resolved ├── DEPENDENCIES.md ├── Example Apps ├── Example ObjC │ ├── AlertManager.h │ ├── AlertManager.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AudioManager.h │ ├── AudioManager.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── ButtonManager.h │ ├── ButtonManager.m │ ├── ConnectionIAPTableViewController.h │ ├── ConnectionIAPTableViewController.m │ ├── ConnectionTCPTableViewController.h │ ├── ConnectionTCPTableViewController.m │ ├── ConnectionTabBarController.h │ ├── ConnectionTabBarController.m │ ├── MenuManager.h │ ├── MenuManager.m │ ├── PerformInteractionManager.h │ ├── PerformInteractionManager.m │ ├── Preferences.h │ ├── Preferences.m │ ├── ProxyManager.h │ ├── ProxyManager.m │ ├── RPCPermissionsManager.h │ ├── RPCPermissionsManager.m │ ├── RemoteControlManager.h │ ├── RemoteControlManager.m │ ├── SmartDeviceLink-Example-ObjC-Info.plist │ ├── SubscribeButtonManager.h │ ├── SubscribeButtonManager.m │ ├── TextValidator.h │ ├── TextValidator.m │ ├── VehicleDataManager.h │ ├── VehicleDataManager.m │ └── main.m ├── Example Swift │ ├── AlertManager.swift │ ├── AppDelegate.swift │ ├── AppUserDefaults.swift │ ├── AudioManager.swift │ ├── ButtonManager.swift │ ├── ConnectionIAPTableViewController.swift │ ├── ConnectionTCPTableViewController.swift │ ├── ConnectionTabBarController.swift │ ├── LaunchScreen.xib │ ├── Main.storyboard │ ├── MenuManager.swift │ ├── PerformInteractionManager.swift │ ├── ProxyManager.swift │ ├── ProxyManagerDelegate.swift │ ├── RPCPermissionsManager.swift │ ├── RemoteControlManager.swift │ ├── SceneDelegate.swift │ ├── SmartDeviceLink-Example-Swift-Bridging-Header.h │ ├── SmartDeviceLink-Example-Swift-Info.plist │ ├── SubscribeButtonManager.swift │ ├── TextValidator.swift │ └── VehicleDataManager.swift └── Shared │ ├── AppConstants.h │ ├── AppConstants.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x-1.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── iTunesArtwork.png │ ├── Contents.json │ ├── alert.imageset │ │ ├── Contents.json │ │ └── iconmonstr-warning-7-240.png │ ├── car.imageset │ │ ├── Contents.json │ │ └── iconmonstr-car-1-240.png │ ├── choice_set.imageset │ │ ├── Contents.json │ │ └── iconmonstr-menu-1-240.png │ ├── dot.radiowaves.right.imageset │ │ ├── Contents.json │ │ └── dot.radiowaves.right@2x.png │ ├── microphone.imageset │ │ ├── Contents.json │ │ └── iconmonstr-microphone-4-240.png │ ├── phone.imageset │ │ ├── Contents.json │ │ └── iconmonstr-phone-4-240.png │ ├── remote_control.imageset │ │ ├── Contents.json │ │ └── remote_control_icon.png │ ├── sdl_logo_green.imageset │ │ ├── Contents.json │ │ ├── sdl_logo_green.png │ │ ├── sdl_logo_green@2x.png │ │ └── sdl_logo_green@3x.png │ ├── speak.imageset │ │ ├── Contents.json │ │ └── iconmonstr-speech-bubble-3-240.png │ ├── toggle_off.imageset │ │ ├── Contents.json │ │ └── iconmonstr-battery-3-240.png │ └── toggle_on.imageset │ │ ├── Contents.json │ │ └── iconmonstr-battery-7-240.png │ └── dot.radiowaves.right@2x.png ├── LICENSE ├── Package.swift ├── README.md ├── SmartDeviceLink-iOS.podspec ├── SmartDeviceLink-iOS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── SmartDeviceLink-iOS.xcscmblueprint └── xcshareddata │ └── xcschemes │ ├── SmartDeviceLink-Example-ObjC.xcscheme │ ├── SmartDeviceLink-Example-Swift.xcscheme │ ├── SmartDeviceLink.xcscheme │ ├── SmartDeviceLinkSwift.xcscheme │ └── SmartDeviceLinkTests.xcscheme ├── SmartDeviceLink.podspec ├── SmartDeviceLink ├── Assets │ ├── Base.lproj │ │ └── SDLLockScreen.storyboard │ ├── SDLAssets.xcassets │ │ ├── Contents.json │ │ ├── lock_arrow_down_black.imageset │ │ │ ├── Contents.json │ │ │ ├── lock_arrow_down_black.png │ │ │ ├── lock_arrow_down_black@2x.png │ │ │ └── lock_arrow_down_black@3x.png │ │ ├── lock_arrow_left_black.imageset │ │ │ ├── Contents.json │ │ │ ├── lock_arrow_left_black.png │ │ │ ├── lock_arrow_left_black@2x.png │ │ │ └── lock_arrow_left_black@3x.png │ │ ├── lock_arrow_right_black.imageset │ │ │ ├── Contents.json │ │ │ ├── lock_arrow_right_black.png │ │ │ ├── lock_arrow_right_black@2x.png │ │ │ └── lock_arrow_right_black@3x.png │ │ ├── lock_arrow_up_black.imageset │ │ │ ├── Contents.json │ │ │ ├── lock_arrow_up_black.png │ │ │ ├── lock_arrow_up_black@2x.png │ │ │ └── lock_arrow_up_black@3x.png │ │ └── sdl_logo_black.imageset │ │ │ ├── Contents.json │ │ │ ├── sdl_logo_black.png │ │ │ ├── sdl_logo_black@2x.png │ │ │ └── sdl_logo_black@3x.png │ ├── de.lproj │ │ └── SDLLockScreen.strings │ ├── en.lproj │ │ └── SDLLockScreen.strings │ ├── es.lproj │ │ └── SDLLockScreen.strings │ ├── fr.lproj │ │ └── SDLLockScreen.strings │ ├── ja.lproj │ │ └── SDLLockScreen.strings │ └── zh-Hans.lproj │ │ └── SDLLockScreen.strings ├── Info.plist ├── private │ ├── CGPoint_Util.h │ ├── CGPoint_Util.m │ ├── CVPixelBufferRef+SDLUtil.h │ ├── CVPixelBufferRef+SDLUtil.m │ ├── EAAccessory+SDLProtocols.h │ ├── EAAccessory+SDLProtocols.m │ ├── EAAccessoryManager+SDLProtocols.h │ ├── EAAccessoryManager+SDLProtocols.m │ ├── NSArray+Extensions.h │ ├── NSArray+Extensions.m │ ├── NSBundle+SDLBundle.h │ ├── NSBundle+SDLBundle.m │ ├── NSMapTable+Subscripting.h │ ├── NSMapTable+Subscripting.m │ ├── NSMutableArray+Safe.h │ ├── NSMutableArray+Safe.m │ ├── NSMutableDictionary+SafeRemove.h │ ├── NSMutableDictionary+SafeRemove.m │ ├── NSMutableDictionary+Store.h │ ├── NSMutableDictionary+Store.m │ ├── SDLAlertManager.h │ ├── SDLAlertManager.m │ ├── SDLAsynchronousOperation.h │ ├── SDLAsynchronousOperation.m │ ├── SDLAsynchronousRPCOperation.h │ ├── SDLAsynchronousRPCOperation.m │ ├── SDLAsynchronousRPCRequestOperation.h │ ├── SDLAsynchronousRPCRequestOperation.m │ ├── SDLBackgroundTaskManager.h │ ├── SDLBackgroundTaskManager.m │ ├── SDLCacheFileManager.h │ ├── SDLCacheFileManager.m │ ├── SDLCarWindow.h │ ├── SDLCarWindow.m │ ├── SDLCheckChoiceVROptionalOperation.h │ ├── SDLCheckChoiceVROptionalOperation.m │ ├── SDLChoiceSetManager.h │ ├── SDLChoiceSetManager.m │ ├── SDLConnectionManagerType.h │ ├── SDLControlFramePayloadAudioStartServiceAck.h │ ├── SDLControlFramePayloadAudioStartServiceAck.m │ ├── SDLControlFramePayloadConstants.h │ ├── SDLControlFramePayloadConstants.m │ ├── SDLControlFramePayloadEndService.h │ ├── SDLControlFramePayloadEndService.m │ ├── SDLControlFramePayloadNak.h │ ├── SDLControlFramePayloadNak.m │ ├── SDLControlFramePayloadRPCStartService.h │ ├── SDLControlFramePayloadRPCStartService.m │ ├── SDLControlFramePayloadRPCStartServiceAck.h │ ├── SDLControlFramePayloadRPCStartServiceAck.m │ ├── SDLControlFramePayloadRegisterSecondaryTransportNak.h │ ├── SDLControlFramePayloadRegisterSecondaryTransportNak.m │ ├── SDLControlFramePayloadTransportEventUpdate.h │ ├── SDLControlFramePayloadTransportEventUpdate.m │ ├── SDLControlFramePayloadType.h │ ├── SDLControlFramePayloadVideoStartService.h │ ├── SDLControlFramePayloadVideoStartService.m │ ├── SDLControlFramePayloadVideoStartServiceAck.h │ ├── SDLControlFramePayloadVideoStartServiceAck.m │ ├── SDLDeleteChoicesOperation.h │ ├── SDLDeleteChoicesOperation.m │ ├── SDLDeleteFileOperation.h │ ├── SDLDeleteFileOperation.m │ ├── SDLDynamicMenuUpdateAlgorithm.h │ ├── SDLDynamicMenuUpdateAlgorithm.m │ ├── SDLDynamicMenuUpdateRunScore.h │ ├── SDLDynamicMenuUpdateRunScore.m │ ├── SDLEncryptionLifecycleManager.h │ ├── SDLEncryptionLifecycleManager.m │ ├── SDLEncryptionManagerConstants.h │ ├── SDLEncryptionManagerConstants.m │ ├── SDLError.h │ ├── SDLError.m │ ├── SDLFileWrapper.h │ ├── SDLFileWrapper.m │ ├── SDLFocusableItemHitTester.h │ ├── SDLFocusableItemLocator.h │ ├── SDLFocusableItemLocator.m │ ├── SDLFocusableItemLocatorType.h │ ├── SDLGlobals.h │ ├── SDLGlobals.m │ ├── SDLH264Packetizer.h │ ├── SDLH264VideoEncoder.h │ ├── SDLH264VideoEncoder.m │ ├── SDLHexUtility.h │ ├── SDLHexUtility.m │ ├── SDLIAPConstants.h │ ├── SDLIAPConstants.m │ ├── SDLIAPControlSession.h │ ├── SDLIAPControlSession.m │ ├── SDLIAPControlSessionDelegate.h │ ├── SDLIAPDataSession.h │ ├── SDLIAPDataSession.m │ ├── SDLIAPDataSessionDelegate.h │ ├── SDLIAPSession.h │ ├── SDLIAPSession.m │ ├── SDLIAPTransport.h │ ├── SDLIAPTransport.m │ ├── SDLIconArchiveFile.h │ ├── SDLIconArchiveFile.m │ ├── SDLImageField+ScreenManagerExtensions.h │ ├── SDLImageField+ScreenManagerExtensions.m │ ├── SDLImageResolution+StreamingVideoExtensions.h │ ├── SDLImageResolution+StreamingVideoExtensions.m │ ├── SDLLifecycleManager.h │ ├── SDLLifecycleManager.m │ ├── SDLLifecycleMobileHMIStateHandler.h │ ├── SDLLifecycleMobileHMIStateHandler.m │ ├── SDLLifecycleProtocolHandler.h │ ├── SDLLifecycleProtocolHandler.m │ ├── SDLLifecycleRPCAdapter.h │ ├── SDLLifecycleRPCAdapter.m │ ├── SDLLifecycleSyncPDataHandler.h │ ├── SDLLifecycleSyncPDataHandler.m │ ├── SDLLifecycleSystemRequestHandler.h │ ├── SDLLifecycleSystemRequestHandler.m │ ├── SDLListFilesOperation.h │ ├── SDLListFilesOperation.m │ ├── SDLLockScreenConstants.h │ ├── SDLLockScreenManager.h │ ├── SDLLockScreenManager.m │ ├── SDLLockScreenPresenter.h │ ├── SDLLockScreenPresenter.m │ ├── SDLLockScreenRootViewController.h │ ├── SDLLockScreenRootViewController.m │ ├── SDLLockScreenStatusInfo.h │ ├── SDLLockScreenStatusInfo.m │ ├── SDLLockScreenStatusManager.h │ ├── SDLLockScreenStatusManager.m │ ├── SDLLogFileModuleMap.h │ ├── SDLLogFileModuleMap.m │ ├── SDLLogModel.h │ ├── SDLLogModel.m │ ├── SDLMacros.h │ ├── SDLMacros.m │ ├── SDLMenuConfigurationUpdateOperation.h │ ├── SDLMenuConfigurationUpdateOperation.m │ ├── SDLMenuManager.h │ ├── SDLMenuManager.m │ ├── SDLMenuManagerPrivateConstants.h │ ├── SDLMenuManagerPrivateConstants.m │ ├── SDLMenuReplaceOperation.h │ ├── SDLMenuReplaceOperation.m │ ├── SDLMenuReplaceUtilities.h │ ├── SDLMenuReplaceUtilities.m │ ├── SDLMenuShowOperation.h │ ├── SDLMenuShowOperation.m │ ├── SDLMutableDataQueue.h │ ├── SDLMutableDataQueue.m │ ├── SDLNotificationDispatcher.h │ ├── SDLNotificationDispatcher.m │ ├── SDLObjectWithPriority.h │ ├── SDLObjectWithPriority.m │ ├── SDLPCMAudioConverter.h │ ├── SDLPCMAudioConverter.m │ ├── SDLPermissionFilter.h │ ├── SDLPermissionFilter.m │ ├── SDLPreloadPresentChoicesOperation.h │ ├── SDLPreloadPresentChoicesOperation.m │ ├── SDLPreloadPresentChoicesOperationUtilities.h │ ├── SDLPreloadPresentChoicesOperationUtilities.m │ ├── SDLPresentAlertOperation.h │ ├── SDLPresentAlertOperation.m │ ├── SDLPresentKeyboardOperation.h │ ├── SDLPresentKeyboardOperation.m │ ├── SDLPrioritizedObjectCollection.h │ ├── SDLPrioritizedObjectCollection.m │ ├── SDLProtocol.h │ ├── SDLProtocol.m │ ├── SDLProtocolDelegate.h │ ├── SDLProtocolHeader.h │ ├── SDLProtocolHeader.m │ ├── SDLProtocolMessage.h │ ├── SDLProtocolMessage.m │ ├── SDLProtocolMessageAssembler.h │ ├── SDLProtocolMessageAssembler.m │ ├── SDLProtocolMessageDisassembler.h │ ├── SDLProtocolMessageDisassembler.m │ ├── SDLProtocolReceivedMessageProcessor.h │ ├── SDLProtocolReceivedMessageProcessor.m │ ├── SDLProtocolReceivedMessageRouter.h │ ├── SDLProtocolReceivedMessageRouter.m │ ├── SDLRAWH264Packetizer.h │ ├── SDLRAWH264Packetizer.m │ ├── SDLRPCParameterNames.h │ ├── SDLRPCParameterNames.m │ ├── SDLRPCPayload.h │ ├── SDLRPCPayload.m │ ├── SDLRTPH264Packetizer.h │ ├── SDLRTPH264Packetizer.m │ ├── SDLResponseDispatcher.h │ ├── SDLResponseDispatcher.m │ ├── SDLSecondaryTransportManager.h │ ├── SDLSecondaryTransportManager.m │ ├── SDLSecurityQueryErrorCode.h │ ├── SDLSecurityQueryErrorCode.m │ ├── SDLSecurityQueryPayload.h │ ├── SDLSecurityQueryPayload.m │ ├── SDLSequentialRPCRequestOperation.h │ ├── SDLSequentialRPCRequestOperation.m │ ├── SDLSoftButtonManager.h │ ├── SDLSoftButtonManager.m │ ├── SDLSoftButtonReplaceOperation.h │ ├── SDLSoftButtonReplaceOperation.m │ ├── SDLSoftButtonTransitionOperation.h │ ├── SDLSoftButtonTransitionOperation.m │ ├── SDLStateMachine.h │ ├── SDLStateMachine.m │ ├── SDLStreamingAudioLifecycleManager.h │ ├── SDLStreamingAudioLifecycleManager.m │ ├── SDLStreamingProtocolDelegate.h │ ├── SDLStreamingVideoLifecycleManager.h │ ├── SDLStreamingVideoLifecycleManager.m │ ├── SDLSubscribeButtonManager.h │ ├── SDLSubscribeButtonManager.m │ ├── SDLSubscribeButtonObserver.h │ ├── SDLSubscribeButtonObserver.m │ ├── SDLSystemCapabilityObserver.h │ ├── SDLSystemCapabilityObserver.m │ ├── SDLTCPTransport.h │ ├── SDLTCPTransport.m │ ├── SDLTextAndGraphicManager.h │ ├── SDLTextAndGraphicManager.m │ ├── SDLTextAndGraphicState.h │ ├── SDLTextAndGraphicState.m │ ├── SDLTextAndGraphicUpdateOperation.h │ ├── SDLTextAndGraphicUpdateOperation.m │ ├── SDLTextField+ScreenManagerExtensions.h │ ├── SDLTextField+ScreenManagerExtensions.m │ ├── SDLTimer.h │ ├── SDLTimer.m │ ├── SDLTransportDelegate.h │ ├── SDLTransportType.h │ ├── SDLUploadFileOperation.h │ ├── SDLUploadFileOperation.m │ ├── SDLV1ProtocolHeader.h │ ├── SDLV1ProtocolHeader.m │ ├── SDLV1ProtocolMessage.h │ ├── SDLV1ProtocolMessage.m │ ├── SDLV2ProtocolHeader.h │ ├── SDLV2ProtocolHeader.m │ ├── SDLV2ProtocolMessage.h │ ├── SDLV2ProtocolMessage.m │ ├── SDLVideoEncoderDelegate.h │ ├── SDLVideoStreamingCapability+StreamingVideoExtensions.h │ ├── SDLVideoStreamingCapability+StreamingVideoExtensions.m │ ├── SDLViewControllerPresentable.h │ ├── SDLVoiceCommandManager.h │ ├── SDLVoiceCommandManager.m │ ├── SDLVoiceCommandUpdateOperation.h │ ├── SDLVoiceCommandUpdateOperation.m │ ├── SDLWindowCapability+ScreenManagerExtensions.h │ └── SDLWindowCapability+ScreenManagerExtensions.m └── public │ ├── NSNumber+NumberType.h │ ├── SDLAddCommand.h │ ├── SDLAddCommand.m │ ├── SDLAddCommandResponse.h │ ├── SDLAddCommandResponse.m │ ├── SDLAddSubMenu.h │ ├── SDLAddSubMenu.m │ ├── SDLAddSubMenuResponse.h │ ├── SDLAddSubMenuResponse.m │ ├── SDLAirbagStatus.h │ ├── SDLAirbagStatus.m │ ├── SDLAlert.h │ ├── SDLAlert.m │ ├── SDLAlertAudioData.h │ ├── SDLAlertAudioData.m │ ├── SDLAlertManeuver.h │ ├── SDLAlertManeuver.m │ ├── SDLAlertManeuverResponse.h │ ├── SDLAlertManeuverResponse.m │ ├── SDLAlertResponse.h │ ├── SDLAlertResponse.m │ ├── SDLAlertView.h │ ├── SDLAlertView.m │ ├── SDLAmbientLightStatus.h │ ├── SDLAmbientLightStatus.m │ ├── SDLAppCapability.h │ ├── SDLAppCapability.m │ ├── SDLAppCapabilityType.h │ ├── SDLAppCapabilityType.m │ ├── SDLAppHMIType.h │ ├── SDLAppHMIType.m │ ├── SDLAppInfo.h │ ├── SDLAppInfo.m │ ├── SDLAppInterfaceUnregisteredReason.h │ ├── SDLAppInterfaceUnregisteredReason.m │ ├── SDLAppServiceCapability.h │ ├── SDLAppServiceCapability.m │ ├── SDLAppServiceData.h │ ├── SDLAppServiceData.m │ ├── SDLAppServiceManifest.h │ ├── SDLAppServiceManifest.m │ ├── SDLAppServiceRecord.h │ ├── SDLAppServiceRecord.m │ ├── SDLAppServiceType.h │ ├── SDLAppServiceType.m │ ├── SDLAppServicesCapabilities.h │ ├── SDLAppServicesCapabilities.m │ ├── SDLArtwork.h │ ├── SDLArtwork.m │ ├── SDLAudioControlCapabilities.h │ ├── SDLAudioControlCapabilities.m │ ├── SDLAudioControlData.h │ ├── SDLAudioControlData.m │ ├── SDLAudioData.h │ ├── SDLAudioData.m │ ├── SDLAudioFile.h │ ├── SDLAudioFile.m │ ├── SDLAudioPassThruCapabilities.h │ ├── SDLAudioPassThruCapabilities.m │ ├── SDLAudioStreamManager.h │ ├── SDLAudioStreamManager.m │ ├── SDLAudioStreamManagerDelegate.h │ ├── SDLAudioStreamingIndicator.h │ ├── SDLAudioStreamingIndicator.m │ ├── SDLAudioStreamingState.h │ ├── SDLAudioStreamingState.m │ ├── SDLAudioType.h │ ├── SDLAudioType.m │ ├── SDLBeltStatus.h │ ├── SDLBeltStatus.m │ ├── SDLBitsPerSample.h │ ├── SDLBitsPerSample.m │ ├── SDLBodyInformation.h │ ├── SDLBodyInformation.m │ ├── SDLButtonCapabilities.h │ ├── SDLButtonCapabilities.m │ ├── SDLButtonEventMode.h │ ├── SDLButtonEventMode.m │ ├── SDLButtonName.h │ ├── SDLButtonName.m │ ├── SDLButtonPress.h │ ├── SDLButtonPress.m │ ├── SDLButtonPressMode.h │ ├── SDLButtonPressMode.m │ ├── SDLButtonPressResponse.h │ ├── SDLButtonPressResponse.m │ ├── SDLCancelInteraction.h │ ├── SDLCancelInteraction.m │ ├── SDLCancelInteractionResponse.h │ ├── SDLCancelInteractionResponse.m │ ├── SDLCapacityUnit.h │ ├── SDLCapacityUnit.m │ ├── SDLCarModeStatus.h │ ├── SDLCarModeStatus.m │ ├── SDLCarWindowViewController.h │ ├── SDLCarWindowViewController.m │ ├── SDLChangeRegistration.h │ ├── SDLChangeRegistration.m │ ├── SDLChangeRegistrationResponse.h │ ├── SDLChangeRegistrationResponse.m │ ├── SDLCharacterSet.h │ ├── SDLCharacterSet.m │ ├── SDLChoice.h │ ├── SDLChoice.m │ ├── SDLChoiceCell.h │ ├── SDLChoiceCell.m │ ├── SDLChoiceSet.h │ ├── SDLChoiceSet.m │ ├── SDLChoiceSetDelegate.h │ ├── SDLClimateControlCapabilities.h │ ├── SDLClimateControlCapabilities.m │ ├── SDLClimateControlData.h │ ├── SDLClimateControlData.m │ ├── SDLClimateData.h │ ├── SDLClimateData.m │ ├── SDLCloseApplication.h │ ├── SDLCloseApplication.m │ ├── SDLCloseApplicationResponse.h │ ├── SDLCloseApplicationResponse.m │ ├── SDLCloudAppProperties.h │ ├── SDLCloudAppProperties.m │ ├── SDLClusterModeStatus.h │ ├── SDLClusterModeStatus.m │ ├── SDLCompassDirection.h │ ├── SDLCompassDirection.m │ ├── SDLComponentVolumeStatus.h │ ├── SDLComponentVolumeStatus.m │ ├── SDLConfiguration.h │ ├── SDLConfiguration.m │ ├── SDLCreateInteractionChoiceSet.h │ ├── SDLCreateInteractionChoiceSet.m │ ├── SDLCreateInteractionChoiceSetResponse.h │ ├── SDLCreateInteractionChoiceSetResponse.m │ ├── SDLCreateWindow.h │ ├── SDLCreateWindow.m │ ├── SDLCreateWindowResponse.h │ ├── SDLCreateWindowResponse.m │ ├── SDLDIDResult.h │ ├── SDLDIDResult.m │ ├── SDLDateTime.h │ ├── SDLDateTime.m │ ├── SDLDefrostZone.h │ ├── SDLDefrostZone.m │ ├── SDLDeleteCommand.h │ ├── SDLDeleteCommand.m │ ├── SDLDeleteCommandResponse.h │ ├── SDLDeleteCommandResponse.m │ ├── SDLDeleteFile.h │ ├── SDLDeleteFile.m │ ├── SDLDeleteFileResponse.h │ ├── SDLDeleteFileResponse.m │ ├── SDLDeleteInteractionChoiceSet.h │ ├── SDLDeleteInteractionChoiceSet.m │ ├── SDLDeleteInteractionChoiceSetResponse.h │ ├── SDLDeleteInteractionChoiceSetResponse.m │ ├── SDLDeleteSubMenu.h │ ├── SDLDeleteSubMenu.m │ ├── SDLDeleteSubMenuResponse.h │ ├── SDLDeleteSubMenuResponse.m │ ├── SDLDeleteWindow.h │ ├── SDLDeleteWindow.m │ ├── SDLDeleteWindowResponse.h │ ├── SDLDeleteWindowResponse.m │ ├── SDLDeliveryMode.h │ ├── SDLDeliveryMode.m │ ├── SDLDeviceInfo.h │ ├── SDLDeviceInfo.m │ ├── SDLDeviceLevelStatus.h │ ├── SDLDeviceLevelStatus.m │ ├── SDLDeviceStatus.h │ ├── SDLDeviceStatus.m │ ├── SDLDiagnosticMessage.h │ ├── SDLDiagnosticMessage.m │ ├── SDLDiagnosticMessageResponse.h │ ├── SDLDiagnosticMessageResponse.m │ ├── SDLDialNumber.h │ ├── SDLDialNumber.m │ ├── SDLDialNumberResponse.h │ ├── SDLDialNumberResponse.m │ ├── SDLDimension.h │ ├── SDLDimension.m │ ├── SDLDirection.h │ ├── SDLDirection.m │ ├── SDLDisplayCapabilities.h │ ├── SDLDisplayCapabilities.m │ ├── SDLDisplayCapability.h │ ├── SDLDisplayCapability.m │ ├── SDLDisplayMode.h │ ├── SDLDisplayMode.m │ ├── SDLDisplayType.h │ ├── SDLDisplayType.m │ ├── SDLDistanceUnit.h │ ├── SDLDistanceUnit.m │ ├── SDLDoorStatus.h │ ├── SDLDoorStatus.m │ ├── SDLDoorStatusType.h │ ├── SDLDoorStatusType.m │ ├── SDLDriverDistractionCapability.h │ ├── SDLDriverDistractionCapability.m │ ├── SDLDriverDistractionState.h │ ├── SDLDriverDistractionState.m │ ├── SDLDynamicUpdateCapabilities.h │ ├── SDLDynamicUpdateCapabilities.m │ ├── SDLECallConfirmationStatus.h │ ├── SDLECallConfirmationStatus.m │ ├── SDLECallInfo.h │ ├── SDLECallInfo.m │ ├── SDLElectronicParkBrakeStatus.h │ ├── SDLElectronicParkBrakeStatus.m │ ├── SDLEmergencyEvent.h │ ├── SDLEmergencyEvent.m │ ├── SDLEmergencyEventType.h │ ├── SDLEmergencyEventType.m │ ├── SDLEncodedSyncPData.h │ ├── SDLEncodedSyncPData.m │ ├── SDLEncodedSyncPDataResponse.h │ ├── SDLEncodedSyncPDataResponse.m │ ├── SDLEncryptionConfiguration.h │ ├── SDLEncryptionConfiguration.m │ ├── SDLEndAudioPassThru.h │ ├── SDLEndAudioPassThru.m │ ├── SDLEndAudioPassThruResponse.h │ ├── SDLEndAudioPassThruResponse.m │ ├── SDLEnum.h │ ├── SDLEnum.m │ ├── SDLEqualizerSettings.h │ ├── SDLEqualizerSettings.m │ ├── SDLErrorConstants.h │ ├── SDLErrorConstants.m │ ├── SDLFile.h │ ├── SDLFile.m │ ├── SDLFileManager.h │ ├── SDLFileManager.m │ ├── SDLFileManagerConfiguration.h │ ├── SDLFileManagerConfiguration.m │ ├── SDLFileManagerConstants.h │ ├── SDLFileType.h │ ├── SDLFileType.m │ ├── SDLFuelCutoffStatus.h │ ├── SDLFuelCutoffStatus.m │ ├── SDLFuelRange.h │ ├── SDLFuelRange.m │ ├── SDLFuelType.h │ ├── SDLFuelType.m │ ├── SDLFunctionID.h │ ├── SDLFunctionID.m │ ├── SDLGPSData.h │ ├── SDLGPSData.m │ ├── SDLGateStatus.h │ ├── SDLGateStatus.m │ ├── SDLGearStatus.h │ ├── SDLGearStatus.m │ ├── SDLGenericResponse.h │ ├── SDLGenericResponse.m │ ├── SDLGetAppServiceData.h │ ├── SDLGetAppServiceData.m │ ├── SDLGetAppServiceDataResponse.h │ ├── SDLGetAppServiceDataResponse.m │ ├── SDLGetCloudAppProperties.h │ ├── SDLGetCloudAppProperties.m │ ├── SDLGetCloudAppPropertiesResponse.h │ ├── SDLGetCloudAppPropertiesResponse.m │ ├── SDLGetDTCs.h │ ├── SDLGetDTCs.m │ ├── SDLGetDTCsResponse.h │ ├── SDLGetDTCsResponse.m │ ├── SDLGetFile.h │ ├── SDLGetFile.m │ ├── SDLGetFileResponse.h │ ├── SDLGetFileResponse.m │ ├── SDLGetInteriorVehicleData.h │ ├── SDLGetInteriorVehicleData.m │ ├── SDLGetInteriorVehicleDataConsent.h │ ├── SDLGetInteriorVehicleDataConsent.m │ ├── SDLGetInteriorVehicleDataConsentResponse.h │ ├── SDLGetInteriorVehicleDataConsentResponse.m │ ├── SDLGetInteriorVehicleDataResponse.h │ ├── SDLGetInteriorVehicleDataResponse.m │ ├── SDLGetSystemCapability.h │ ├── SDLGetSystemCapability.m │ ├── SDLGetSystemCapabilityResponse.h │ ├── SDLGetSystemCapabilityResponse.m │ ├── SDLGetVehicleData.h │ ├── SDLGetVehicleData.m │ ├── SDLGetVehicleDataResponse.h │ ├── SDLGetVehicleDataResponse.m │ ├── SDLGetWayPoints.h │ ├── SDLGetWayPoints.m │ ├── SDLGetWayPointsResponse.h │ ├── SDLGetWayPointsResponse.m │ ├── SDLGlobalProperty.h │ ├── SDLGlobalProperty.m │ ├── SDLGrid.h │ ├── SDLGrid.m │ ├── SDLHMICapabilities.h │ ├── SDLHMICapabilities.m │ ├── SDLHMILevel.h │ ├── SDLHMILevel.m │ ├── SDLHMIPermissions.h │ ├── SDLHMIPermissions.m │ ├── SDLHMISettingsControlCapabilities.h │ ├── SDLHMISettingsControlCapabilities.m │ ├── SDLHMISettingsControlData.h │ ├── SDLHMISettingsControlData.m │ ├── SDLHMIZoneCapabilities.h │ ├── SDLHMIZoneCapabilities.m │ ├── SDLHapticRect.h │ ├── SDLHapticRect.m │ ├── SDLHeadLampStatus.h │ ├── SDLHeadLampStatus.m │ ├── SDLHybridAppPreference.h │ ├── SDLHybridAppPreference.m │ ├── SDLIgnitionStableStatus.h │ ├── SDLIgnitionStableStatus.m │ ├── SDLIgnitionStatus.h │ ├── SDLIgnitionStatus.m │ ├── SDLImage.h │ ├── SDLImage.m │ ├── SDLImageField.h │ ├── SDLImageField.m │ ├── SDLImageFieldName.h │ ├── SDLImageFieldName.m │ ├── SDLImageResolution.h │ ├── SDLImageResolution.m │ ├── SDLImageType.h │ ├── SDLImageType.m │ ├── SDLInteractionMode.h │ ├── SDLInteractionMode.m │ ├── SDLKeyboardCapabilities.h │ ├── SDLKeyboardCapabilities.m │ ├── SDLKeyboardDelegate.h │ ├── SDLKeyboardEvent.h │ ├── SDLKeyboardEvent.m │ ├── SDLKeyboardInputMask.h │ ├── SDLKeyboardInputMask.m │ ├── SDLKeyboardLayout.h │ ├── SDLKeyboardLayout.m │ ├── SDLKeyboardLayoutCapability.h │ ├── SDLKeyboardLayoutCapability.m │ ├── SDLKeyboardProperties.h │ ├── SDLKeyboardProperties.m │ ├── SDLKeypressMode.h │ ├── SDLKeypressMode.m │ ├── SDLLanguage.h │ ├── SDLLanguage.m │ ├── SDLLayoutMode.h │ ├── SDLLayoutMode.m │ ├── SDLLifecycleConfiguration.h │ ├── SDLLifecycleConfiguration.m │ ├── SDLLifecycleConfigurationUpdate.h │ ├── SDLLifecycleConfigurationUpdate.m │ ├── SDLLightCapabilities.h │ ├── SDLLightCapabilities.m │ ├── SDLLightControlCapabilities.h │ ├── SDLLightControlCapabilities.m │ ├── SDLLightControlData.h │ ├── SDLLightControlData.m │ ├── SDLLightName.h │ ├── SDLLightName.m │ ├── SDLLightState.h │ ├── SDLLightState.m │ ├── SDLLightStatus.h │ ├── SDLLightStatus.m │ ├── SDLListFiles.h │ ├── SDLListFiles.m │ ├── SDLListFilesResponse.h │ ├── SDLListFilesResponse.m │ ├── SDLLocationCoordinate.h │ ├── SDLLocationCoordinate.m │ ├── SDLLocationDetails.h │ ├── SDLLocationDetails.m │ ├── SDLLockScreenConfiguration.h │ ├── SDLLockScreenConfiguration.m │ ├── SDLLockScreenViewController.h │ ├── SDLLockScreenViewController.m │ ├── SDLLogConfiguration.h │ ├── SDLLogConfiguration.m │ ├── SDLLogConstants.h │ ├── SDLLogFileModule.h │ ├── SDLLogFileModule.m │ ├── SDLLogFilter.h │ ├── SDLLogFilter.m │ ├── SDLLogMacros.h │ ├── SDLLogManager.h │ ├── SDLLogManager.m │ ├── SDLLogTarget.h │ ├── SDLLogTargetAppleSystemLog.h │ ├── SDLLogTargetAppleSystemLog.m │ ├── SDLLogTargetFile.h │ ├── SDLLogTargetFile.m │ ├── SDLLogTargetOSLog.h │ ├── SDLLogTargetOSLog.m │ ├── SDLMaintenanceModeStatus.h │ ├── SDLMaintenanceModeStatus.m │ ├── SDLManager.h │ ├── SDLManager.m │ ├── SDLManagerDelegate.h │ ├── SDLMassageCushion.h │ ├── SDLMassageCushion.m │ ├── SDLMassageCushionFirmness.h │ ├── SDLMassageCushionFirmness.m │ ├── SDLMassageMode.h │ ├── SDLMassageMode.m │ ├── SDLMassageModeData.h │ ├── SDLMassageModeData.m │ ├── SDLMassageZone.h │ ├── SDLMassageZone.m │ ├── SDLMediaClockFormat.h │ ├── SDLMediaClockFormat.m │ ├── SDLMediaServiceData.h │ ├── SDLMediaServiceData.m │ ├── SDLMediaServiceManifest.h │ ├── SDLMediaServiceManifest.m │ ├── SDLMediaType.h │ ├── SDLMediaType.m │ ├── SDLMenuCell.h │ ├── SDLMenuCell.m │ ├── SDLMenuConfiguration.h │ ├── SDLMenuConfiguration.m │ ├── SDLMenuLayout.h │ ├── SDLMenuLayout.m │ ├── SDLMenuManagerConstants.h │ ├── SDLMenuParams.h │ ├── SDLMenuParams.m │ ├── SDLMetadataTags.h │ ├── SDLMetadataTags.m │ ├── SDLMetadataType.h │ ├── SDLMetadataType.m │ ├── SDLModuleData.h │ ├── SDLModuleData.m │ ├── SDLModuleInfo.h │ ├── SDLModuleInfo.m │ ├── SDLModuleType.h │ ├── SDLModuleType.m │ ├── SDLMsgVersion.h │ ├── SDLMsgVersion.m │ ├── SDLMyKey.h │ ├── SDLMyKey.m │ ├── SDLNavigationAction.h │ ├── SDLNavigationAction.m │ ├── SDLNavigationCapability.h │ ├── SDLNavigationCapability.m │ ├── SDLNavigationInstruction.h │ ├── SDLNavigationInstruction.m │ ├── SDLNavigationJunction.h │ ├── SDLNavigationJunction.m │ ├── SDLNavigationServiceData.h │ ├── SDLNavigationServiceData.m │ ├── SDLNavigationServiceManifest.h │ ├── SDLNavigationServiceManifest.m │ ├── SDLNotificationConstants.h │ ├── SDLNotificationConstants.m │ ├── SDLOasisAddress.h │ ├── SDLOasisAddress.m │ ├── SDLOnAppCapabilityUpdated.h │ ├── SDLOnAppCapabilityUpdated.m │ ├── SDLOnAppInterfaceUnregistered.h │ ├── SDLOnAppInterfaceUnregistered.m │ ├── SDLOnAppServiceData.h │ ├── SDLOnAppServiceData.m │ ├── SDLOnAudioPassThru.h │ ├── SDLOnAudioPassThru.m │ ├── SDLOnButtonEvent.h │ ├── SDLOnButtonEvent.m │ ├── SDLOnButtonPress.h │ ├── SDLOnButtonPress.m │ ├── SDLOnCommand.h │ ├── SDLOnCommand.m │ ├── SDLOnDriverDistraction.h │ ├── SDLOnDriverDistraction.m │ ├── SDLOnEncodedSyncPData.h │ ├── SDLOnEncodedSyncPData.m │ ├── SDLOnHMIStatus.h │ ├── SDLOnHMIStatus.m │ ├── SDLOnHashChange.h │ ├── SDLOnHashChange.m │ ├── SDLOnInteriorVehicleData.h │ ├── SDLOnInteriorVehicleData.m │ ├── SDLOnKeyboardInput.h │ ├── SDLOnKeyboardInput.m │ ├── SDLOnLanguageChange.h │ ├── SDLOnLanguageChange.m │ ├── SDLOnPermissionsChange.h │ ├── SDLOnPermissionsChange.m │ ├── SDLOnRCStatus.h │ ├── SDLOnRCStatus.m │ ├── SDLOnSubtleAlertPressed.h │ ├── SDLOnSubtleAlertPressed.m │ ├── SDLOnSyncPData.h │ ├── SDLOnSyncPData.m │ ├── SDLOnSystemCapabilityUpdated.h │ ├── SDLOnSystemCapabilityUpdated.m │ ├── SDLOnSystemRequest.h │ ├── SDLOnSystemRequest.m │ ├── SDLOnTBTClientState.h │ ├── SDLOnTBTClientState.m │ ├── SDLOnTouchEvent.h │ ├── SDLOnTouchEvent.m │ ├── SDLOnUpdateFile.h │ ├── SDLOnUpdateFile.m │ ├── SDLOnUpdateSubMenu.h │ ├── SDLOnUpdateSubMenu.m │ ├── SDLOnVehicleData.h │ ├── SDLOnVehicleData.m │ ├── SDLOnWayPointChange.h │ ├── SDLOnWayPointChange.m │ ├── SDLPRNDL.h │ ├── SDLPRNDL.m │ ├── SDLParameterPermissions.h │ ├── SDLParameterPermissions.m │ ├── SDLPerformAppServiceInteraction.h │ ├── SDLPerformAppServiceInteraction.m │ ├── SDLPerformAppServiceInteractionResponse.h │ ├── SDLPerformAppServiceInteractionResponse.m │ ├── SDLPerformAudioPassThru.h │ ├── SDLPerformAudioPassThru.m │ ├── SDLPerformAudioPassThruResponse.h │ ├── SDLPerformAudioPassThruResponse.m │ ├── SDLPerformInteraction.h │ ├── SDLPerformInteraction.m │ ├── SDLPerformInteractionResponse.h │ ├── SDLPerformInteractionResponse.m │ ├── SDLPermissionConstants.h │ ├── SDLPermissionElement.h │ ├── SDLPermissionElement.m │ ├── SDLPermissionItem.h │ ├── SDLPermissionItem.m │ ├── SDLPermissionManager.h │ ├── SDLPermissionManager.m │ ├── SDLPermissionStatus.h │ ├── SDLPermissionStatus.m │ ├── SDLPhoneCapability.h │ ├── SDLPhoneCapability.m │ ├── SDLPinchGesture.h │ ├── SDLPinchGesture.m │ ├── SDLPowerModeQualificationStatus.h │ ├── SDLPowerModeQualificationStatus.m │ ├── SDLPowerModeStatus.h │ ├── SDLPowerModeStatus.m │ ├── SDLPredefinedLayout.h │ ├── SDLPredefinedLayout.m │ ├── SDLPredefinedWindows.h │ ├── SDLPrerecordedSpeech.h │ ├── SDLPrerecordedSpeech.m │ ├── SDLPresetBankCapabilities.h │ ├── SDLPresetBankCapabilities.m │ ├── SDLPrimaryAudioSource.h │ ├── SDLPrimaryAudioSource.m │ ├── SDLProtocolConstants.h │ ├── SDLProtocolConstants.m │ ├── SDLPublishAppService.h │ ├── SDLPublishAppService.m │ ├── SDLPublishAppServiceResponse.h │ ├── SDLPublishAppServiceResponse.m │ ├── SDLPutFile.h │ ├── SDLPutFile.m │ ├── SDLPutFileResponse.h │ ├── SDLPutFileResponse.m │ ├── SDLRDSData.h │ ├── SDLRDSData.m │ ├── SDLRGBColor.h │ ├── SDLRGBColor.m │ ├── SDLRPCFunctionNames.h │ ├── SDLRPCFunctionNames.m │ ├── SDLRPCMessage.h │ ├── SDLRPCMessage.m │ ├── SDLRPCMessageType.h │ ├── SDLRPCMessageType.m │ ├── SDLRPCNotification.h │ ├── SDLRPCNotification.m │ ├── SDLRPCNotificationNotification.h │ ├── SDLRPCNotificationNotification.m │ ├── SDLRPCPermissionStatus.h │ ├── SDLRPCPermissionStatus.m │ ├── SDLRPCRequest.h │ ├── SDLRPCRequest.m │ ├── SDLRPCRequestNotification.h │ ├── SDLRPCRequestNotification.m │ ├── SDLRPCResponse.h │ ├── SDLRPCResponse.m │ ├── SDLRPCResponseNotification.h │ ├── SDLRPCResponseNotification.m │ ├── SDLRPCStruct.h │ ├── SDLRPCStruct.m │ ├── SDLRadioBand.h │ ├── SDLRadioBand.m │ ├── SDLRadioControlCapabilities.h │ ├── SDLRadioControlCapabilities.m │ ├── SDLRadioControlData.h │ ├── SDLRadioControlData.m │ ├── SDLRadioState.h │ ├── SDLRadioState.m │ ├── SDLReadDID.h │ ├── SDLReadDID.m │ ├── SDLReadDIDResponse.h │ ├── SDLReadDIDResponse.m │ ├── SDLRectangle.h │ ├── SDLRectangle.m │ ├── SDLRegisterAppInterface.h │ ├── SDLRegisterAppInterface.m │ ├── SDLRegisterAppInterfaceResponse.h │ ├── SDLRegisterAppInterfaceResponse.m │ ├── SDLReleaseInteriorVehicleDataModule.h │ ├── SDLReleaseInteriorVehicleDataModule.m │ ├── SDLReleaseInteriorVehicleDataModuleResponse.h │ ├── SDLReleaseInteriorVehicleDataModuleResponse.m │ ├── SDLRemoteControlCapabilities.h │ ├── SDLRemoteControlCapabilities.m │ ├── SDLRequestType.h │ ├── SDLRequestType.m │ ├── SDLResetGlobalProperties.h │ ├── SDLResetGlobalProperties.m │ ├── SDLResetGlobalPropertiesResponse.h │ ├── SDLResetGlobalPropertiesResponse.m │ ├── SDLResult.h │ ├── SDLResult.m │ ├── SDLRoofStatus.h │ ├── SDLRoofStatus.m │ ├── SDLSISData.h │ ├── SDLSISData.m │ ├── SDLSamplingRate.h │ ├── SDLSamplingRate.m │ ├── SDLScreenManager.h │ ├── SDLScreenManager.m │ ├── SDLScreenParams.h │ ├── SDLScreenParams.m │ ├── SDLScrollableMessage.h │ ├── SDLScrollableMessage.m │ ├── SDLScrollableMessageResponse.h │ ├── SDLScrollableMessageResponse.m │ ├── SDLSeatControlCapabilities.h │ ├── SDLSeatControlCapabilities.m │ ├── SDLSeatControlData.h │ ├── SDLSeatControlData.m │ ├── SDLSeatLocation.h │ ├── SDLSeatLocation.m │ ├── SDLSeatLocationCapability.h │ ├── SDLSeatLocationCapability.m │ ├── SDLSeatMemoryAction.h │ ├── SDLSeatMemoryAction.m │ ├── SDLSeatMemoryActionType.h │ ├── SDLSeatMemoryActionType.m │ ├── SDLSeatOccupancy.h │ ├── SDLSeatOccupancy.m │ ├── SDLSeatStatus.h │ ├── SDLSeatStatus.m │ ├── SDLSecurityType.h │ ├── SDLSeekIndicatorType.h │ ├── SDLSeekIndicatorType.m │ ├── SDLSeekStreamingIndicator.h │ ├── SDLSeekStreamingIndicator.m │ ├── SDLSendHapticData.h │ ├── SDLSendHapticData.m │ ├── SDLSendHapticDataResponse.h │ ├── SDLSendHapticDataResponse.m │ ├── SDLSendLocation.h │ ├── SDLSendLocation.m │ ├── SDLSendLocationResponse.h │ ├── SDLSendLocationResponse.m │ ├── SDLServiceEncryptionDelegate.h │ ├── SDLServiceUpdateReason.h │ ├── SDLServiceUpdateReason.m │ ├── SDLSetAppIcon.h │ ├── SDLSetAppIcon.m │ ├── SDLSetAppIconResponse.h │ ├── SDLSetAppIconResponse.m │ ├── SDLSetCloudAppProperties.h │ ├── SDLSetCloudAppProperties.m │ ├── SDLSetCloudAppPropertiesResponse.h │ ├── SDLSetCloudAppPropertiesResponse.m │ ├── SDLSetDisplayLayout.h │ ├── SDLSetDisplayLayout.m │ ├── SDLSetDisplayLayoutResponse.h │ ├── SDLSetDisplayLayoutResponse.m │ ├── SDLSetGlobalProperties.h │ ├── SDLSetGlobalProperties.m │ ├── SDLSetGlobalPropertiesResponse.h │ ├── SDLSetGlobalPropertiesResponse.m │ ├── SDLSetInteriorVehicleData.h │ ├── SDLSetInteriorVehicleData.m │ ├── SDLSetInteriorVehicleDataResponse.h │ ├── SDLSetInteriorVehicleDataResponse.m │ ├── SDLSetMediaClockTimer.h │ ├── SDLSetMediaClockTimer.m │ ├── SDLSetMediaClockTimerResponse.h │ ├── SDLSetMediaClockTimerResponse.m │ ├── SDLShow.h │ ├── SDLShow.m │ ├── SDLShowAppMenu.h │ ├── SDLShowAppMenu.m │ ├── SDLShowAppMenuResponse.h │ ├── SDLShowAppMenuResponse.m │ ├── SDLShowConstantTBT.h │ ├── SDLShowConstantTBT.m │ ├── SDLShowConstantTBTResponse.h │ ├── SDLShowConstantTBTResponse.m │ ├── SDLShowResponse.h │ ├── SDLShowResponse.m │ ├── SDLSingleTireStatus.h │ ├── SDLSingleTireStatus.m │ ├── SDLSlider.h │ ├── SDLSlider.m │ ├── SDLSliderResponse.h │ ├── SDLSliderResponse.m │ ├── SDLSoftButton.h │ ├── SDLSoftButton.m │ ├── SDLSoftButtonCapabilities.h │ ├── SDLSoftButtonCapabilities.m │ ├── SDLSoftButtonObject.h │ ├── SDLSoftButtonObject.m │ ├── SDLSoftButtonState.h │ ├── SDLSoftButtonState.m │ ├── SDLSoftButtonType.h │ ├── SDLSoftButtonType.m │ ├── SDLSpeak.h │ ├── SDLSpeak.m │ ├── SDLSpeakResponse.h │ ├── SDLSpeakResponse.m │ ├── SDLSpeechCapabilities.h │ ├── SDLSpeechCapabilities.m │ ├── SDLStabilityControlsStatus.h │ ├── SDLStabilityControlsStatus.m │ ├── SDLStartTime.h │ ├── SDLStartTime.m │ ├── SDLStaticIconName.h │ ├── SDLStaticIconName.m │ ├── SDLStationIDNumber.h │ ├── SDLStationIDNumber.m │ ├── SDLStreamingAudioManagerType.h │ ├── SDLStreamingMediaConfiguration.h │ ├── SDLStreamingMediaConfiguration.m │ ├── SDLStreamingMediaManager.h │ ├── SDLStreamingMediaManager.m │ ├── SDLStreamingMediaManagerConstants.h │ ├── SDLStreamingMediaManagerConstants.m │ ├── SDLStreamingMediaManagerDataSource.h │ ├── SDLStreamingVideoDelegate.h │ ├── SDLStreamingVideoScaleManager.h │ ├── SDLStreamingVideoScaleManager.m │ ├── SDLSubscribeButton.h │ ├── SDLSubscribeButton.m │ ├── SDLSubscribeButtonResponse.h │ ├── SDLSubscribeButtonResponse.m │ ├── SDLSubscribeVehicleData.h │ ├── SDLSubscribeVehicleData.m │ ├── SDLSubscribeVehicleDataResponse.h │ ├── SDLSubscribeVehicleDataResponse.m │ ├── SDLSubscribeWayPoints.h │ ├── SDLSubscribeWayPoints.m │ ├── SDLSubscribeWayPointsResponse.h │ ├── SDLSubscribeWayPointsResponse.m │ ├── SDLSubtleAlert.h │ ├── SDLSubtleAlert.m │ ├── SDLSubtleAlertResponse.h │ ├── SDLSubtleAlertResponse.m │ ├── SDLSupportedSeat.h │ ├── SDLSupportedSeat.m │ ├── SDLSyncPData.h │ ├── SDLSyncPData.m │ ├── SDLSyncPDataResponse.h │ ├── SDLSyncPDataResponse.m │ ├── SDLSystemAction.h │ ├── SDLSystemAction.m │ ├── SDLSystemCapability.h │ ├── SDLSystemCapability.m │ ├── SDLSystemCapabilityManager.h │ ├── SDLSystemCapabilityManager.m │ ├── SDLSystemCapabilityType.h │ ├── SDLSystemCapabilityType.m │ ├── SDLSystemContext.h │ ├── SDLSystemContext.m │ ├── SDLSystemInfo.h │ ├── SDLSystemInfo.m │ ├── SDLSystemRequest.h │ ├── SDLSystemRequest.m │ ├── SDLSystemRequestResponse.h │ ├── SDLSystemRequestResponse.m │ ├── SDLTBTState.h │ ├── SDLTBTState.m │ ├── SDLTPMS.h │ ├── SDLTPMS.m │ ├── SDLTTSChunk.h │ ├── SDLTTSChunk.m │ ├── SDLTemperature.h │ ├── SDLTemperature.m │ ├── SDLTemperatureUnit.h │ ├── SDLTemperatureUnit.m │ ├── SDLTemplateColorScheme.h │ ├── SDLTemplateColorScheme.m │ ├── SDLTemplateConfiguration.h │ ├── SDLTemplateConfiguration.m │ ├── SDLTextAlignment.h │ ├── SDLTextAlignment.m │ ├── SDLTextField.h │ ├── SDLTextField.m │ ├── SDLTextFieldName.h │ ├── SDLTextFieldName.m │ ├── SDLTimerMode.h │ ├── SDLTimerMode.m │ ├── SDLTireStatus.h │ ├── SDLTireStatus.m │ ├── SDLTouch.h │ ├── SDLTouch.m │ ├── SDLTouchCoord.h │ ├── SDLTouchCoord.m │ ├── SDLTouchEvent.h │ ├── SDLTouchEvent.m │ ├── SDLTouchEventCapabilities.h │ ├── SDLTouchEventCapabilities.m │ ├── SDLTouchManager.h │ ├── SDLTouchManager.m │ ├── SDLTouchManagerDelegate.h │ ├── SDLTouchType.h │ ├── SDLTouchType.m │ ├── SDLTransmissionType.h │ ├── SDLTransmissionType.m │ ├── SDLTriggerSource.h │ ├── SDLTriggerSource.m │ ├── SDLTurn.h │ ├── SDLTurn.m │ ├── SDLTurnSignal.h │ ├── SDLTurnSignal.m │ ├── SDLUnpublishAppService.h │ ├── SDLUnpublishAppService.m │ ├── SDLUnpublishAppServiceResponse.h │ ├── SDLUnpublishAppServiceResponse.m │ ├── SDLUnregisterAppInterface.h │ ├── SDLUnregisterAppInterface.m │ ├── SDLUnregisterAppInterfaceResponse.h │ ├── SDLUnregisterAppInterfaceResponse.m │ ├── SDLUnsubscribeButton.h │ ├── SDLUnsubscribeButton.m │ ├── SDLUnsubscribeButtonResponse.h │ ├── SDLUnsubscribeButtonResponse.m │ ├── SDLUnsubscribeVehicleData.h │ ├── SDLUnsubscribeVehicleData.m │ ├── SDLUnsubscribeVehicleDataResponse.h │ ├── SDLUnsubscribeVehicleDataResponse.m │ ├── SDLUnsubscribeWayPoints.h │ ├── SDLUnsubscribeWayPoints.m │ ├── SDLUnsubscribeWayPointsResponse.h │ ├── SDLUnsubscribeWayPointsResponse.m │ ├── SDLUpdateMode.h │ ├── SDLUpdateMode.m │ ├── SDLUpdateTurnList.h │ ├── SDLUpdateTurnList.m │ ├── SDLUpdateTurnListResponse.h │ ├── SDLUpdateTurnListResponse.m │ ├── SDLVehicleDataActiveStatus.h │ ├── SDLVehicleDataActiveStatus.m │ ├── SDLVehicleDataEventStatus.h │ ├── SDLVehicleDataEventStatus.m │ ├── SDLVehicleDataNotificationStatus.h │ ├── SDLVehicleDataNotificationStatus.m │ ├── SDLVehicleDataResult.h │ ├── SDLVehicleDataResult.m │ ├── SDLVehicleDataResultCode.h │ ├── SDLVehicleDataResultCode.m │ ├── SDLVehicleDataStatus.h │ ├── SDLVehicleDataStatus.m │ ├── SDLVehicleDataType.h │ ├── SDLVehicleDataType.m │ ├── SDLVehicleType.h │ ├── SDLVehicleType.m │ ├── SDLVentilationMode.h │ ├── SDLVentilationMode.m │ ├── SDLVersion.h │ ├── SDLVersion.m │ ├── SDLVideoStreamingCapability.h │ ├── SDLVideoStreamingCapability.m │ ├── SDLVideoStreamingCodec.h │ ├── SDLVideoStreamingCodec.m │ ├── SDLVideoStreamingFormat.h │ ├── SDLVideoStreamingFormat.m │ ├── SDLVideoStreamingProtocol.h │ ├── SDLVideoStreamingProtocol.m │ ├── SDLVideoStreamingRange.h │ ├── SDLVideoStreamingRange.m │ ├── SDLVideoStreamingState.h │ ├── SDLVideoStreamingState.m │ ├── SDLVoiceCommand.h │ ├── SDLVoiceCommand.m │ ├── SDLVrCapabilities.h │ ├── SDLVrCapabilities.m │ ├── SDLVrHelpItem.h │ ├── SDLVrHelpItem.m │ ├── SDLWarningLightStatus.h │ ├── SDLWarningLightStatus.m │ ├── SDLWayPointType.h │ ├── SDLWayPointType.m │ ├── SDLWeatherAlert.h │ ├── SDLWeatherAlert.m │ ├── SDLWeatherData.h │ ├── SDLWeatherData.m │ ├── SDLWeatherServiceData.h │ ├── SDLWeatherServiceData.m │ ├── SDLWeatherServiceManifest.h │ ├── SDLWeatherServiceManifest.m │ ├── SDLWindowCapability.h │ ├── SDLWindowCapability.m │ ├── SDLWindowState.h │ ├── SDLWindowState.m │ ├── SDLWindowStatus.h │ ├── SDLWindowStatus.m │ ├── SDLWindowType.h │ ├── SDLWindowType.m │ ├── SDLWindowTypeCapabilities.h │ ├── SDLWindowTypeCapabilities.m │ ├── SDLWiperStatus.h │ ├── SDLWiperStatus.m │ └── SmartDeviceLink.h ├── SmartDeviceLinkSwift ├── Info.plist ├── SDLLog.swift └── SmartDeviceLinkSwift.h ├── SmartDeviceLinkTests ├── Assets │ ├── TestLockScreenAppIcon.png │ ├── testAudio.mp3 │ ├── testFileJSON.json │ ├── testImageBMP.bmp │ ├── testImageJPEG.jpeg │ ├── testImageJPG.jpg │ ├── testImagePNG.png │ └── testImageTIFF.tiff ├── DevAPISpecs │ ├── NSArray+ExtensionsSpec.m │ ├── NSMapTable+SubscriptingSpec.m │ ├── NSMutableDictionary+StoreSpec.m │ ├── Notification Tests │ │ ├── SDLRPCNotificationNotificationSpec.m │ │ ├── SDLRPCRequestNotificationSpec.m │ │ └── SDLRPCResponseNotificationSpec.m │ ├── SDLArtworkSpec.m │ ├── SDLAsynchronousRPCRequestOperationSpec.m │ ├── SDLAudioStreamManagerSpec.m │ ├── SDLCheckChoiceVROptionalOperationSpec.m │ ├── SDLChoiceCellSpec.m │ ├── SDLChoiceSetManagerSpec.m │ ├── SDLChoiceSetSpec.m │ ├── SDLConfigurationSpec.m │ ├── SDLDeleteChoicesOperationSpec.m │ ├── SDLDeleteFileOperationSpec.m │ ├── SDLFakeSecurityManager.h │ ├── SDLFakeSecurityManager.m │ ├── SDLFakeStreamingManagerDataSource.h │ ├── SDLFakeStreamingManagerDataSource.m │ ├── SDLFakeViewControllerPresenter.h │ ├── SDLFakeViewControllerPresenter.m │ ├── SDLFileManagerSpec.m │ ├── SDLFileSpec.m │ ├── SDLLifecycleConfigurationSpec.m │ ├── SDLLifecycleManagerSpec.m │ ├── SDLLifecycleMobileHMIStateHandlerSpec.m │ ├── SDLLifecycleProtocolHandlerSpec.m │ ├── SDLLifecycleRPCAdapterSpec.m │ ├── SDLLifecycleSyncPDataHandlerSpec.m │ ├── SDLLifecycleSystemRequestHandlerSpec.m │ ├── SDLListFilesOperationSpec.m │ ├── SDLLockScreenConfigurationSpec.m │ ├── SDLLockScreenManagerSpec.m │ ├── SDLMenuCellSpec.m │ ├── SDLMenuConfigurationSpec.m │ ├── SDLMenuConfigurationUpdateOperationSpec.m │ ├── SDLMenuManagerSpec.m │ ├── SDLMenuReplaceOperationSpec.m │ ├── SDLMenuReplaceUtilitiesSpec.m │ ├── SDLMenuReplaceUtilitiesSpecHelpers.h │ ├── SDLMenuReplaceUtilitiesSpecHelpers.m │ ├── SDLMenuShowOperationSpec.m │ ├── SDLPermissionFilterSpec.m │ ├── SDLPermissionsManagerSpec.m │ ├── SDLPreloadPresentChoicesOperationSpec.m │ ├── SDLPreloadPresentChoicesOperationUtilitiesSpec.m │ ├── SDLPresentKeyboardOperationSpec.m │ ├── SDLRAWH264PacketizerSpec.m │ ├── SDLRTPH264PacketizerSpec.m │ ├── SDLSequentialRPCRequestOperationSpec.m │ ├── SDLSoftButtonManagerSpec.m │ ├── SDLSoftButtonStateSpec.m │ ├── SDLSoftButtonTransitionOperationSpec.m │ ├── SDLStateMachineSpec.m │ ├── SDLStreamingAudioLifecycleManagerSpec.m │ ├── SDLStreamingMediaConfigurationSpec.m │ ├── SDLStreamingVideoLifecycleManagerSpec.m │ ├── SDLSystemInfoSpec.m │ ├── SDLTextAndGraphicManagerSpec.m │ ├── SDLTextAndGraphicStateSpec.m │ ├── SDLTextAndGraphicUpdateOperationSpec.m │ ├── SDLUploadFileOperationSpec.m │ ├── SDLVersionSpec.m │ ├── SDLVideoStreamingRangeSpec.m │ ├── SDLVoiceCommandManagerSpec.m │ ├── SDLVoiceCommandSpec.m │ ├── SDLVoiceCommandUpdateOperationSpec.m │ ├── TestSystemCapabilityObserver.h │ └── TestSystemCapabilityObserver.m ├── Info.plist ├── LoggingSpecs │ ├── SDLLogConfigurationSpec.m │ ├── SDLLogFileModuleSpec.m │ ├── SDLLogFilterSpec.m │ ├── SDLLogManagerSpec.m │ ├── SDLLogModelSpec.m │ ├── TestLogTarget.h │ └── TestLogTarget.m ├── Notifications │ ├── SDLNotificationDispatcherSpec.m │ └── SDLResponseDispatcherSpec.m ├── ProtocolSpecs │ ├── ControlFramePayloadSpecs │ │ ├── SDLControlFramePayloadNakSpec.m │ │ ├── SDLControlFramePayloadRegisterSecondaryTransportNakSpec.m │ │ ├── SDLControlFramePayloadTransportEventUpdateSpec.m │ │ ├── SDLControlFramePayloadVideoStartServiceSpec.m │ │ └── SDLControlFrameVideoStartServiceAckSpec.m │ ├── HeaderSpecs │ │ ├── SDLProtocolHeaderSpec.m │ │ ├── SDLV1ProtocolHeaderSpec.m │ │ └── SDLV2ProtocolHeaderSpec.m │ ├── MessageSpecs │ │ ├── SDLControlFramePayloadConstantsSpec.m │ │ ├── SDLProtocolMessageSpec.m │ │ ├── SDLProtocolSpec.m │ │ ├── SDLV1ProtocolMessageSpec.m │ │ └── SDLV2ProtocolMessageSpec.m │ ├── SDLControlFramePayloadAudioStartServiceAckSpec.m │ ├── SDLControlFramePayloadEndServiceSpec.m │ ├── SDLControlFramePayloadRPCStartServiceAckSpec.m │ ├── SDLControlFramePayloadRPCStartServiceSpec.m │ ├── SDLFunctionIDSpec.m │ ├── SDLProtocolMessageAssemblerSpec.m │ ├── SDLProtocolMessageDisassemblerSpec.m │ ├── SDLProtocolReceivedMessageProcessorSpec.m │ └── SDLProtocolReceivedMessageRouterSpec.m ├── ProxySpecs │ ├── SDLHapticManagerSpec.m │ ├── SDLLockScreenStatusManagerSpec.m │ └── SDLSecondaryTransportManagerSpec.m ├── RPCSpecs │ ├── EnumSpecs │ │ ├── SDLAmbientLightStatusSpec.m │ │ ├── SDLAppCapabilityTypeSpec.m │ │ ├── SDLAppHMITypeSpec.m │ │ ├── SDLAppInterfaceUnregisteredReasonSpec.m │ │ ├── SDLAppServiceTypeSpec.m │ │ ├── SDLAudioStreamingIndicatorSpec.m │ │ ├── SDLAudioStreamingStateSpec.m │ │ ├── SDLAudioTypeSpec.m │ │ ├── SDLBitsPerSampleSpec.m │ │ ├── SDLButtonEventModeSpec.m │ │ ├── SDLButtonNameSpec.m │ │ ├── SDLButtonPressModeSpec.m │ │ ├── SDLCapacityUnitSpec.m │ │ ├── SDLCarModeStatusSpec.m │ │ ├── SDLCharacterSetSpec.m │ │ ├── SDLCompassDirectionSpec.m │ │ ├── SDLComponentVolumeStatusSpec.m │ │ ├── SDLDeliveryModeSpec.m │ │ ├── SDLDeviceLevelStatusSpec.m │ │ ├── SDLDimensionSpec.m │ │ ├── SDLDirectionSpec.m │ │ ├── SDLDisplayModeSpec.m │ │ ├── SDLDisplayTypeSpec.m │ │ ├── SDLDistanceUnitSpec.m │ │ ├── SDLDoorStatusTypeSpec.m │ │ ├── SDLDriverDistractionStateSpec.m │ │ ├── SDLECallConfirmationStatusSpec.m │ │ ├── SDLElectronicParkBrakeStatusSpec.m │ │ ├── SDLEmergencyEventTypeSpec.m │ │ ├── SDLFileTypeSpec.m │ │ ├── SDLFuelCutoffStatusSpec.m │ │ ├── SDLFuelTypeSpec.m │ │ ├── SDLGlobalProperySpec.m │ │ ├── SDLHMILevelSpec.m │ │ ├── SDLHMIZoneCapabilitiesSpec.m │ │ ├── SDLHybridAppPreferenceSpec.m │ │ ├── SDLIgnitionStableStatusSpec.m │ │ ├── SDLIgnitionStatusSpec.m │ │ ├── SDLImageFieldNameSpec.m │ │ ├── SDLImageTypeSpec.m │ │ ├── SDLInteractionModeSpec.m │ │ ├── SDLKeyboardEventSpec.m │ │ ├── SDLKeyboardInputMaskSpec.m │ │ ├── SDLKeyboardLayoutSpec.m │ │ ├── SDLKeypressModeSpec.m │ │ ├── SDLLanguageSpec.m │ │ ├── SDLLayoutModeSpec.m │ │ ├── SDLLightNameSpec.m │ │ ├── SDLLightStatusSpec.m │ │ ├── SDLMaintenanceModeStatusSpec.m │ │ ├── SDLMassageCushionSpec.m │ │ ├── SDLMassageModeSpec.m │ │ ├── SDLMassageZoneSpec.m │ │ ├── SDLMediaClockFormatSpec.m │ │ ├── SDLMediaTypeSpec.m │ │ ├── SDLMenuLayoutSpec.m │ │ ├── SDLMetadataTypeSpec.m │ │ ├── SDLModuleTypeSpec.m │ │ ├── SDLNavigationActionSpec.m │ │ ├── SDLNavigationJunctionSpec.m │ │ ├── SDLPRNDLSpec.m │ │ ├── SDLPermissionStatusSpec.m │ │ ├── SDLPowerModeQualificationStatusSpec.m │ │ ├── SDLPowerModeStatusSpec.m │ │ ├── SDLPredefinedLayoutSpec.m │ │ ├── SDLPredefinedWindowsSpec.m │ │ ├── SDLPrerecordedSpeechSpec.m │ │ ├── SDLPrimaryAudioSource.m │ │ ├── SDLRadioBandSpec.m │ │ ├── SDLRadioStateSpec.m │ │ ├── SDLRequestTypeSpec.m │ │ ├── SDLResultSpec.m │ │ ├── SDLSamplingRateSpec.m │ │ ├── SDLSeekIndicatorTypeSpec.m │ │ ├── SDLServiceUpdateReasonSpec.m │ │ ├── SDLSoftButtonTypeSpec.m │ │ ├── SDLSpeechCapabilitiesSpec.m │ │ ├── SDLStaticIconNameSpec.m │ │ ├── SDLSupportedSeatSpec.m │ │ ├── SDLSystemAction.m │ │ ├── SDLSystemCapabilityTypeSpec.m │ │ ├── SDLSystemContextSpec.m │ │ ├── SDLTBTStateSpec.m │ │ ├── SDLTemperatureUnitSpec.m │ │ ├── SDLTextAlignmentSpec.m │ │ ├── SDLTextFieldNameSpec.m │ │ ├── SDLTimerModeSpec.m │ │ ├── SDLTouchTypeSpec.m │ │ ├── SDLTransmissionTypeSpec.m │ │ ├── SDLTriggerSource.m │ │ ├── SDLTurnSignalSpec.m │ │ ├── SDLUpdateModeSpec.m │ │ ├── SDLVehicleDataActiveStatusSpec.m │ │ ├── SDLVehicleDataEventStatusSpec.m │ │ ├── SDLVehicleDataNotificationStatusSpec.m │ │ ├── SDLVehicleDataResultCodeSpec.m │ │ ├── SDLVehicleDataStatusSpec.m │ │ ├── SDLVehicleDataTypeSpec.m │ │ ├── SDLVentilationModeSpec.m │ │ ├── SDLVideoStreamingCodecSpec.m │ │ ├── SDLVideoStreamingProtocolSpec.m │ │ ├── SDLVideoStreamingStateSpec.m │ │ ├── SDLVrCapabilitiesSpec.m │ │ ├── SDLWarningLightStatusSpec.m │ │ ├── SDLWaypointTypeSpec.m │ │ ├── SDLWindowTypeSpec.m │ │ └── SDLWiperStatusSpec.m │ ├── NotificationSpecs │ │ ├── SDLOnAppCapabilityUpdatedSpec.m │ │ ├── SDLOnAppInterfaceUnregisteredSpec.m │ │ ├── SDLOnAppServiceDataSpec.m │ │ ├── SDLOnAudioPassThruSpec.m │ │ ├── SDLOnButtonEventSpec.m │ │ ├── SDLOnButtonPressSpec.m │ │ ├── SDLOnCommandSpec.m │ │ ├── SDLOnDriverDistractionSpec.m │ │ ├── SDLOnEncodedSyncPDataSpec.m │ │ ├── SDLOnHMIStatusSpec.m │ │ ├── SDLOnHashChangeSpec.m │ │ ├── SDLOnInteriorVehicleDataSpec.m │ │ ├── SDLOnKeyboardInputSpec.m │ │ ├── SDLOnLanguageChangeSpec.m │ │ ├── SDLOnPermissionsChangeSpec.m │ │ ├── SDLOnRCStatusSpec.m │ │ ├── SDLOnSubtleAlertPressedSpec.m │ │ ├── SDLOnSyncPDataSpec.m │ │ ├── SDLOnSystemCapabilityUpdatedSpec.m │ │ ├── SDLOnSystemRequestSpec.m │ │ ├── SDLOnTBTClientStateSpec.m │ │ ├── SDLOnTouchEventSpec.m │ │ ├── SDLOnUpdateFileSpec.m │ │ ├── SDLOnUpdateSubMenuSpec.m │ │ ├── SDLOnVehicleDataSpec.m │ │ └── SDLOnWaypointChangeSpec.m │ ├── PayloadSpecs │ │ ├── SDLRPCPayloadSpec.m │ │ └── SDLSecurityQueryPayloadSpec.m │ ├── RequestSpecs │ │ ├── SDLAddCommandSpec.m │ │ ├── SDLAddSubMenuSpec.m │ │ ├── SDLAlertManeuverSpec.m │ │ ├── SDLAlertSpec.m │ │ ├── SDLButtonPressSpec.m │ │ ├── SDLCancelInteractionSpec.m │ │ ├── SDLChangeRegistrationSpec.m │ │ ├── SDLCloseApplicationSpec.m │ │ ├── SDLCreateInteractionChoiceSetSpec.m │ │ ├── SDLCreateWindowSpec.m │ │ ├── SDLDeleteCommandSpec.m │ │ ├── SDLDeleteFileSpec.m │ │ ├── SDLDeleteInteractionChoiceSetSpec.m │ │ ├── SDLDeleteSubMenuSpec.m │ │ ├── SDLDeleteWindowSpec.m │ │ ├── SDLDiagnosticMessageSpec.m │ │ ├── SDLDialNumberSpec.m │ │ ├── SDLEncodedSyncPDataSpec.m │ │ ├── SDLEndAudioPassThruSpec.m │ │ ├── SDLGetAppServiceDataSpec.m │ │ ├── SDLGetCloudAppPropertiesSpec.m │ │ ├── SDLGetDTCsSpec.m │ │ ├── SDLGetFileSpec.m │ │ ├── SDLGetInteriorVehicleDataConsentSpec.m │ │ ├── SDLGetInteriorVehicleDataSpec.m │ │ ├── SDLGetSystemCapabilitiesSpec.m │ │ ├── SDLGetSystemCapabilitySpec.m │ │ ├── SDLGetVehicleDataSpec.m │ │ ├── SDLGetWaypointsSpec.m │ │ ├── SDLListFilesSpec.m │ │ ├── SDLPerformAppServiceInteractionSpec.m │ │ ├── SDLPerformAudioPassThruSpec.m │ │ ├── SDLPerformInteractionSpec.m │ │ ├── SDLPublishAppServiceSpec.m │ │ ├── SDLPutFileSpec.m │ │ ├── SDLReadDIDSpec.m │ │ ├── SDLRegisterAppInterfaceSpec.m │ │ ├── SDLReleaseInteriorVehicleDataModuleSpec.m │ │ ├── SDLResetGlobalPropertiesSpec.m │ │ ├── SDLScrollableMessageSpec.m │ │ ├── SDLSendHapticDataSpec.m │ │ ├── SDLSendLocationSpec.m │ │ ├── SDLSetAppIconSpec.m │ │ ├── SDLSetCloudAppPropertiesSpec.m │ │ ├── SDLSetDisplayLayoutSpec.m │ │ ├── SDLSetGlobalPropertiesSpec.m │ │ ├── SDLSetInteriorVehicleDataSpec.m │ │ ├── SDLSetMediaClockTimerSpec.m │ │ ├── SDLShowAppMenuSpec.m │ │ ├── SDLShowConstantTBTSpec.m │ │ ├── SDLShowSpec.m │ │ ├── SDLSliderSpec.m │ │ ├── SDLSpeakSpec.m │ │ ├── SDLSubscribeButtonSpec.m │ │ ├── SDLSubscribeVehicleDataSpec.m │ │ ├── SDLSubscribeWaypointsSpec.m │ │ ├── SDLSubtleAlertSpec.m │ │ ├── SDLSyncPDataSpec.m │ │ ├── SDLSystemRequestSpec.m │ │ ├── SDLUnpublishAppServiceSpec.m │ │ ├── SDLUnregisterAppInterfaceSpec.m │ │ ├── SDLUnsubscribeButtonSpec.m │ │ ├── SDLUnsubscribeVehicleDataSpec.m │ │ ├── SDLUnsubscribeWaypointsSpec.m │ │ └── SDLUpdateTurnListSpec.m │ ├── ResponseSpecs │ │ ├── SDLAddCommandResponseSpec.m │ │ ├── SDLAddSubMenuResponseSpec.m │ │ ├── SDLAlertManeuverResponseSpec.m │ │ ├── SDLAlertResponseSpec.m │ │ ├── SDLButtonPressResponseSpec.m │ │ ├── SDLCancelInteractionResponseSpec.m │ │ ├── SDLChangeRegistrationResponseSpec.m │ │ ├── SDLCloseApplicationResponseSpec.m │ │ ├── SDLCreateInteractionChoiceSetResponseSpec.m │ │ ├── SDLCreateWindowResponseSpec.m │ │ ├── SDLDeleteCommandResponseSpec.m │ │ ├── SDLDeleteFileResponseSpec.m │ │ ├── SDLDeleteInteractionChoiceSetResponseSpec.m │ │ ├── SDLDeleteSubMenuResponseSpec.m │ │ ├── SDLDeleteWindowResponseSpec.m │ │ ├── SDLDiagnosticMessageResponseSpec.m │ │ ├── SDLDialNumberResponseSpec.m │ │ ├── SDLEncodedSyncPDataResponseSpec.m │ │ ├── SDLEndAudioPassThruResponseSpec.m │ │ ├── SDLGenericResponseSpec.m │ │ ├── SDLGetAppServiceDataResponseSpec.m │ │ ├── SDLGetCloudAppPropertiesResponseSpec.m │ │ ├── SDLGetDTCsResponseSpec.m │ │ ├── SDLGetFileResponseSpec.m │ │ ├── SDLGetInteriorVehicleDataConsentResponseSpec.m │ │ ├── SDLGetInteriorVehicleDataResponseSpec.m │ │ ├── SDLGetSystemCapabilityResponseSpec.m │ │ ├── SDLGetVehicleDataResponseSpec.m │ │ ├── SDLGetWaypointsResponseSpec.m │ │ ├── SDLListFilesResponseSpec.m │ │ ├── SDLPerformAppServiceInteractionResponseSpec.m │ │ ├── SDLPerformAudioPassThruResponseSpec.m │ │ ├── SDLPerformInteractionResponseSpec.m │ │ ├── SDLPublishAppServiceResponseSpec.m │ │ ├── SDLPutFileResponseSpec.m │ │ ├── SDLReadDIDResponseSpec.m │ │ ├── SDLRegisterAppInterfaceResponseSpec.m │ │ ├── SDLReleaseInteriorVehicleDataModuleResponseSpec.m │ │ ├── SDLResetGlobalPropertiesResponseSpec.m │ │ ├── SDLScrollableMessageResponseSpec.m │ │ ├── SDLSeatOccupancySpec.m │ │ ├── SDLSeatStatusSpec.m │ │ ├── SDLSendHapticDataResponseSpec.m │ │ ├── SDLSendLocationResponseSpec.m │ │ ├── SDLSetAppIconResponseSpec.m │ │ ├── SDLSetCloudAppPropertiesResponseSpec.m │ │ ├── SDLSetDisplayLayoutResponseSpec.m │ │ ├── SDLSetGlobalPropertiesResponseSpec.m │ │ ├── SDLSetInteriorVehicleDataResponseSpec.m │ │ ├── SDLSetMediaClockTimerResponseSpec.m │ │ ├── SDLShowAppMenuResponseSpec.m │ │ ├── SDLShowConstantTBTResponseSpec.m │ │ ├── SDLShowResponseSpec.m │ │ ├── SDLSliderResponseSpec.m │ │ ├── SDLSpeakResponseSpec.m │ │ ├── SDLSubscribeButtonResponseSpec.m │ │ ├── SDLSubscribeVehicleDataResponseSpec.m │ │ ├── SDLSubscribeWaypointsResponseSpec.m │ │ ├── SDLSubtleAlertResponseSpec.m │ │ ├── SDLSyncPDataResponseSpec.m │ │ ├── SDLSystemRequestResponseSpec.m │ │ ├── SDLUnpublishAppServiceResponseSpec.m │ │ ├── SDLUnregisterAppInterfaceResponseSpec.m │ │ ├── SDLUnsubscribeButtonResponseSpec.m │ │ ├── SDLUnsubscribeVehicleDataResponseSpec.m │ │ ├── SDLUnsubscribeWaypointsResponseSpec.m │ │ └── SDLUpdateTurnListResponseSpec.m │ ├── StructSpecs │ │ ├── SDLAirbagStatusSpec.m │ │ ├── SDLAppCapabilitySpec.m │ │ ├── SDLAppInfoSpec.m │ │ ├── SDLAppServiceCapabilitySpec.m │ │ ├── SDLAppServiceDataSpec.m │ │ ├── SDLAppServiceManifestSpec.m │ │ ├── SDLAppServiceRecordSpec.m │ │ ├── SDLAppServicesCapabilitiesSpec.m │ │ ├── SDLAudioControlCapabilitiesSpec.m │ │ ├── SDLAudioControlDataSpec.m │ │ ├── SDLAudioPassThruCapabilitiesSpec.m │ │ ├── SDLBeltStatusSpec.m │ │ ├── SDLBodyInformationSpec.m │ │ ├── SDLButtonCapabilitiesSpec.m │ │ ├── SDLChoiceSpec.m │ │ ├── SDLClimateControlCapabilitiesSpec.m │ │ ├── SDLClimateControlDataSpec.m │ │ ├── SDLClimateDataSpec.m │ │ ├── SDLCloudAppPropertiesSpec.m │ │ ├── SDLClusterModeStatusSpec.m │ │ ├── SDLDIDResult.m │ │ ├── SDLDateTimeSpec.m │ │ ├── SDLDeviceInfoSpec.m │ │ ├── SDLDeviceStatusSpec.m │ │ ├── SDLDisplayCapabilitiesSpec.m │ │ ├── SDLDisplayCapabilitySpec.m │ │ ├── SDLDoorStatusSpec.m │ │ ├── SDLDriverDistractionCapabilitySpec.m │ │ ├── SDLDynamicUpdateCapabilitiesSpec.m │ │ ├── SDLECallInfoSpec.m │ │ ├── SDLEmergencyEventSpec.m │ │ ├── SDLEqualizerSettingsSpec.m │ │ ├── SDLFuelRangeSpec.m │ │ ├── SDLGPSDataSpec.m │ │ ├── SDLGateStatusSpec.m │ │ ├── SDLGearStatusSpec.m │ │ ├── SDLHMICapabilitiesSpec.m │ │ ├── SDLHMIPermissionsSpec.m │ │ ├── SDLHMISettingsControlCapabilitiesSpec.m │ │ ├── SDLHMISettingsControlDataSpec.m │ │ ├── SDLHapticRectSpec.m │ │ ├── SDLHeadLampStatusSpec.m │ │ ├── SDLImageFieldSpec.m │ │ ├── SDLImageResolutionSpec.m │ │ ├── SDLImageSpec.m │ │ ├── SDLKeyboardCapabilitiesSpec.m │ │ ├── SDLKeyboardLayoutCapabilitySpec.m │ │ ├── SDLKeyboardPropertiesSpec.m │ │ ├── SDLLightCapabilitiesSpec.m │ │ ├── SDLLightControlCapabilitiesSpec.m │ │ ├── SDLLightControlDataSpec.m │ │ ├── SDLLightStateSpec.m │ │ ├── SDLLocationCoordinateSpec.m │ │ ├── SDLLocationDetailsSpec.m │ │ ├── SDLMassageCushionFirmnessSpec.m │ │ ├── SDLMassageModeDataSpec.m │ │ ├── SDLMediaServiceDataSpec.m │ │ ├── SDLMediaServiceManifestSpec.m │ │ ├── SDLMenuParamsSpec.m │ │ ├── SDLMetadataTagsSpec.m │ │ ├── SDLModuleDataSpec.m │ │ ├── SDLMyKeySpec.m │ │ ├── SDLNavigationCapabilitySpec.m │ │ ├── SDLNavigationInstructionSpec.m │ │ ├── SDLNavigationServiceDataSpec.m │ │ ├── SDLNavigationServiceManifestSpec.m │ │ ├── SDLOasisAddressSpec.m │ │ ├── SDLParameterPermissionsSpec.m │ │ ├── SDLPermissionItemSpec.m │ │ ├── SDLPhoneCapabilitySpec.m │ │ ├── SDLPresetBankCapabilitiesSpec.m │ │ ├── SDLRDSDataSpec.m │ │ ├── SDLRGBColorSpec.m │ │ ├── SDLRadioControlCapabilitiesSpec.m │ │ ├── SDLRadioControlDataSpec.m │ │ ├── SDLRectangleSpec.m │ │ ├── SDLRemoteControlCapabilitiesSpec.m │ │ ├── SDLRoofStatusSpec.m │ │ ├── SDLSISDataSpec.m │ │ ├── SDLScreenParamsSpec.m │ │ ├── SDLSeatControlCapabilitiesSpec.m │ │ ├── SDLSeatControlDataSpec.m │ │ ├── SDLSeatLocationCapabilitySpec.m │ │ ├── SDLSeatLocationSpec.m │ │ ├── SDLSeatMemoryActionSpec.m │ │ ├── SDLSeekStreamingIndicatorSpec.m │ │ ├── SDLSingleTireStatusSpec.m │ │ ├── SDLSoftButtonCapabilitiesSpec.m │ │ ├── SDLSoftButtonSpec.m │ │ ├── SDLStabilityControlsStatusSpec.m │ │ ├── SDLStartTimeSpec.m │ │ ├── SDLStationIDNumberSpec.m │ │ ├── SDLSystemCapabilitySpec.m │ │ ├── SDLTTSChunkSpec.m │ │ ├── SDLTemperatureSpec.m │ │ ├── SDLTemplateColorSchemeSpec.m │ │ ├── SDLTemplateConfigurationSpec.m │ │ ├── SDLTextFieldSpec.m │ │ ├── SDLTireStatusSpec.m │ │ ├── SDLTouchCoordSpec.m │ │ ├── SDLTouchEventCapabilitiesSpec.m │ │ ├── SDLTouchEventSpec.m │ │ ├── SDLTurnSpec.m │ │ ├── SDLVehicleDataResultSpec.m │ │ ├── SDLVehicleTypeSpec.m │ │ ├── SDLVideoStreamingCapabilitySpec.m │ │ ├── SDLVideoStreamingFormatSpec.m │ │ ├── SDLVrHelpItemSpec.m │ │ ├── SDLWeatherAlertSpec.m │ │ ├── SDLWeatherDataSpec.m │ │ ├── SDLWeatherServiceDataSpec.m │ │ ├── SDLWeatherServiceManifestSpec.m │ │ ├── SDLWindowCapabilitySpec.m │ │ ├── SDLWindowStateSpec.m │ │ ├── SDLWindowStatusSpec.m │ │ └── SDLWindowTypeCapabilitiesSpec.m │ └── SuperclassSpecs │ │ ├── SDLRPCMessageSpec.m │ │ ├── SDLRPCNotificationSpec.m │ │ ├── SDLRPCRequestSpec.m │ │ ├── SDLRPCResponseSpec.m │ │ └── SDLRPCStructSpec.m ├── ReferenceImages_64 │ └── SDLLockScreenViewControllerSnapshotTests │ │ ├── testAppAndVehicleIcons@2x.png │ │ ├── testAppAndVehicleIcons@3x.png │ │ ├── testLightBackgroundNoAppNoVehicleIcons@2x.png │ │ ├── testLightBackgroundNoAppNoVehicleIcons@3x.png │ │ ├── testNoAppNoVehicleIcons@2x.png │ │ ├── testNoAppNoVehicleIcons@3x.png │ │ ├── testOnlyAppIcon@2x.png │ │ ├── testOnlyAppIcon@3x.png │ │ ├── testOnlyVehicleIcon@2x.png │ │ └── testOnlyVehicleIcon@3x.png ├── SDLAlertAudioDataSpec.m ├── SDLAlertManagerSpec.m ├── SDLAlertViewSpec.m ├── SDLAsynchronousRPCOperationSpec.m ├── SDLAudioDataSpec.m ├── SDLCacheFileManagerSpec.m ├── SDLCarWindowSpec.m ├── SDLEncryptionConfigurationSpec.m ├── SDLEncryptionLifecycleManagerSpec.m ├── SDLFileManagerConfigurationSpec.m ├── SDLH264VideoEncoderSpec.m ├── SDLLifecycleConfigurationUpdateSpec.m ├── SDLLogConstantsSpec.m ├── SDLMenuRunScoreSpec.m ├── SDLMenuUpdateAlgorithmSpec.m ├── SDLOnLockScreenStatusSpec.m ├── SDLPermissionElementSpec.m ├── SDLPresentAlertOperationSpec.m ├── SDLRPCFunctionNamesSpec.m ├── SDLRPCPermissionStatusSpec.m ├── SDLScreenManagerSpec.m ├── SDLSoftButtonObjectSpec.m ├── SDLSoftButtonReplaceOperationSpec.m ├── SDLStreamingAudioManagerMock.h ├── SDLStreamingAudioManagerMock.m ├── SDLStreamingMediaManagerSpec.m ├── SDLStreamingVideoScaleManagerSpec.m ├── SDLSubscribeButtonManagerSpec.m ├── SDLSubscribeButtonObserverSpec.m ├── SDLSystemCapabilityManagerSpec.m ├── SwiftSpec.swift ├── TestConnectionRequestObject.h ├── TestConnectionRequestObject.m ├── TestFileProgressResponse.h ├── TestFileProgressResponse.m ├── TestHapticRectViewController.h ├── TestHapticRectViewController.m ├── TestMultipleFilesConnectionManager.h ├── TestMultipleFilesConnectionManager.m ├── TestResponse.h ├── TestResponse.m ├── TestSmartConnection.h ├── TestSmartConnection.m ├── TestSmartConnectionManager.h ├── TestSmartConnectionManager.m ├── TestStreamingMediaDelegate.h ├── TestStreamingMediaDelegate.m ├── TestSubscribeButtonObserver.h ├── TestSubscribeButtonObserver.m ├── TestUtilities │ ├── SDLSpecUtilities.h │ ├── SDLSpecUtilities.m │ ├── TestConnectionManager.h │ ├── TestConnectionManager.m │ ├── TestMultipleRequestsConnectionManager.h │ ├── TestMultipleRequestsConnectionManager.m │ ├── TestRequestProgressResponse.h │ ├── TestRequestProgressResponse.m │ ├── TestStateMachineTarget.h │ ├── TestStateMachineTarget.m │ ├── TestTCPServer.h │ └── TestTCPServer.m ├── TransportSpecs │ ├── TCP │ │ └── SDLTCPTransportSpec.m │ └── iAP │ │ ├── SDLIAPConstantsSpec.m │ │ ├── SDLIAPControlSessionSpec.m │ │ ├── SDLIAPDataSessionSpec.m │ │ ├── SDLIAPSessionSpec.m │ │ ├── SDLIAPTransportSpec.m │ │ └── Utilities │ │ ├── EAAccessory+OCMock.h │ │ └── EAAccessory+OCMock.m └── UtilitiesSpecs │ ├── Prioritized Objects │ ├── SDLObjectWithPrioritySpec.m │ └── SDLPrioritizedObjectCollectionSpec.m │ ├── SDLGlobalsSpec.m │ ├── SDLHexUtilitySpec.m │ └── Touches │ ├── CGPointUtilSpec.m │ ├── SDLPinchGestureSpec.m │ ├── SDLTouchManagerSpec.m │ └── SDLTouchSpec.m ├── codecov.yml ├── docs ├── .exist ├── Categories.html ├── Categories │ └── NSString(SDLEnum).html ├── Classes.html ├── Classes │ ├── SDLAddCommand.html │ ├── SDLAddSubMenu.html │ ├── SDLAirbagStatus.html │ ├── SDLAlert.html │ ├── SDLAlertAudioData.html │ ├── SDLAlertManeuver.html │ ├── SDLAlertResponse.html │ ├── SDLAlertView.html │ ├── SDLAppCapability.html │ ├── SDLAppInfo.html │ ├── SDLAppServiceCapability.html │ ├── SDLAppServiceData.html │ ├── SDLAppServiceManifest.html │ ├── SDLAppServiceRecord.html │ ├── SDLAppServicesCapabilities.html │ ├── SDLArtwork.html │ ├── SDLAudioControlCapabilities.html │ ├── SDLAudioControlData.html │ ├── SDLAudioData.html │ ├── SDLAudioFile.html │ ├── SDLAudioPassThruCapabilities.html │ ├── SDLAudioStreamManager.html │ ├── SDLBeltStatus.html │ ├── SDLBodyInformation.html │ ├── SDLButtonCapabilities.html │ ├── SDLButtonPress.html │ ├── SDLCancelInteraction.html │ ├── SDLCarWindowViewController.html │ ├── SDLChangeRegistration.html │ ├── SDLChoice.html │ ├── SDLChoiceCell.html │ ├── SDLChoiceSet.html │ ├── SDLClimateControlCapabilities.html │ ├── SDLClimateControlData.html │ ├── SDLClimateData.html │ ├── SDLCloudAppProperties.html │ ├── SDLClusterModeStatus.html │ ├── SDLConfiguration.html │ ├── SDLCreateInteractionChoiceSet.html │ ├── SDLCreateWindow.html │ ├── SDLDIDResult.html │ ├── SDLDateTime.html │ ├── SDLDeleteCommand.html │ ├── SDLDeleteFile.html │ ├── SDLDeleteFileResponse.html │ ├── SDLDeleteInteractionChoiceSet.html │ ├── SDLDeleteSubMenu.html │ ├── SDLDeleteWindow.html │ ├── SDLDeviceInfo.html │ ├── SDLDeviceStatus.html │ ├── SDLDiagnosticMessage.html │ ├── SDLDiagnosticMessageResponse.html │ ├── SDLDialNumber.html │ ├── SDLDisplayCapabilities.html │ ├── SDLDisplayCapability.html │ ├── SDLDoorStatus.html │ ├── SDLDriverDistractionCapability.html │ ├── SDLDynamicUpdateCapabilities.html │ ├── SDLECallInfo.html │ ├── SDLEmergencyEvent.html │ ├── SDLEncodedSyncPData.html │ ├── SDLEncryptionConfiguration.html │ ├── SDLEqualizerSettings.html │ ├── SDLFile.html │ ├── SDLFileManager.html │ ├── SDLFileManagerConfiguration.html │ ├── SDLFuelRange.html │ ├── SDLFunctionID.html │ ├── SDLGPSData.html │ ├── SDLGateStatus.html │ ├── SDLGearStatus.html │ ├── SDLGetAppServiceData.html │ ├── SDLGetAppServiceDataResponse.html │ ├── SDLGetCloudAppProperties.html │ ├── SDLGetCloudAppPropertiesResponse.html │ ├── SDLGetDTCs.html │ ├── SDLGetDTCsResponse.html │ ├── SDLGetFile.html │ ├── SDLGetFileResponse.html │ ├── SDLGetInteriorVehicleData.html │ ├── SDLGetInteriorVehicleDataConsent.html │ ├── SDLGetInteriorVehicleDataConsentResponse.html │ ├── SDLGetInteriorVehicleDataResponse.html │ ├── SDLGetSystemCapability.html │ ├── SDLGetSystemCapabilityResponse.html │ ├── SDLGetVehicleData.html │ ├── SDLGetVehicleDataResponse.html │ ├── SDLGetWaypoints.html │ ├── SDLGetWaypointsResponse.html │ ├── SDLGrid.html │ ├── SDLHMICapabilities.html │ ├── SDLHMIPermissions.html │ ├── SDLHMISettingsControlCapabilities.html │ ├── SDLHMISettingsControlData.html │ ├── SDLHapticRect.html │ ├── SDLHeadLampStatus.html │ ├── SDLImage.html │ ├── SDLImageField.html │ ├── SDLImageResolution.html │ ├── SDLKeyboardCapabilities.html │ ├── SDLKeyboardLayoutCapability.html │ ├── SDLKeyboardProperties.html │ ├── SDLLifecycleConfiguration.html │ ├── SDLLifecycleConfigurationUpdate.html │ ├── SDLLightCapabilities.html │ ├── SDLLightControlCapabilities.html │ ├── SDLLightControlData.html │ ├── SDLLightState.html │ ├── SDLListFilesResponse.html │ ├── SDLLocationCoordinate.html │ ├── SDLLocationDetails.html │ ├── SDLLockScreenConfiguration.html │ ├── SDLLockScreenViewController.html │ ├── SDLLogConfiguration.html │ ├── SDLLogFileModule.html │ ├── SDLLogFilter.html │ ├── SDLLogManager.html │ ├── SDLManager.html │ ├── SDLMassageCushionFirmness.html │ ├── SDLMassageModeData.html │ ├── SDLMediaServiceData.html │ ├── SDLMenuCell.html │ ├── SDLMenuConfiguration.html │ ├── SDLMenuParams.html │ ├── SDLMetadataTags.html │ ├── SDLModuleData.html │ ├── SDLModuleInfo.html │ ├── SDLMsgVersion.html │ ├── SDLMyKey.html │ ├── SDLNavigationCapability.html │ ├── SDLNavigationInstruction.html │ ├── SDLNavigationServiceData.html │ ├── SDLNavigationServiceManifest.html │ ├── SDLNotificationConstants.html │ ├── SDLOasisAddress.html │ ├── SDLOnAppCapabilityUpdated.html │ ├── SDLOnAppInterfaceUnregistered.html │ ├── SDLOnAppServiceData.html │ ├── SDLOnButtonEvent.html │ ├── SDLOnButtonPress.html │ ├── SDLOnCommand.html │ ├── SDLOnDriverDistraction.html │ ├── SDLOnEncodedSyncPData.html │ ├── SDLOnHMIStatus.html │ ├── SDLOnHashChange.html │ ├── SDLOnInteriorVehicleData.html │ ├── SDLOnKeyboardInput.html │ ├── SDLOnLanguageChange.html │ ├── SDLOnPermissionsChange.html │ ├── SDLOnRCStatus.html │ ├── SDLOnSyncPData.html │ ├── SDLOnSystemCapabilityUpdated.html │ ├── SDLOnSystemRequest.html │ ├── SDLOnTBTClientState.html │ ├── SDLOnTouchEvent.html │ ├── SDLOnUpdateFile.html │ ├── SDLOnUpdateSubMenu.html │ ├── SDLOnVehicleData.html │ ├── SDLOnWaypointChange.html │ ├── SDLParameterPermissions.html │ ├── SDLPerformAppServiceInteraction.html │ ├── SDLPerformAppServiceInteractionResponse.html │ ├── SDLPerformAudioPassThru.html │ ├── SDLPerformInteraction.html │ ├── SDLPerformInteractionResponse.html │ ├── SDLPermissionElement.html │ ├── SDLPermissionItem.html │ ├── SDLPermissionManager.html │ ├── SDLPhoneCapability.html │ ├── SDLPinchGesture.html │ ├── SDLPresetBankCapabilities.html │ ├── SDLPublishAppService.html │ ├── SDLPublishAppServiceResponse.html │ ├── SDLPutFile.html │ ├── SDLPutFileResponse.html │ ├── SDLRDSData.html │ ├── SDLRGBColor.html │ ├── SDLRPCMessage.html │ ├── SDLRPCNotificationNotification.html │ ├── SDLRPCPermissionStatus.html │ ├── SDLRPCRequest.html │ ├── SDLRPCRequestNotification.html │ ├── SDLRPCResponse.html │ ├── SDLRPCResponseNotification.html │ ├── SDLRPCStruct.html │ ├── SDLRadioControlCapabilities.html │ ├── SDLRadioControlData.html │ ├── SDLReadDID.html │ ├── SDLReadDIDResponse.html │ ├── SDLRectangle.html │ ├── SDLRegisterAppInterface.html │ ├── SDLRegisterAppInterfaceResponse.html │ ├── SDLReleaseInteriorVehicleDataModule.html │ ├── SDLRemoteControlCapabilities.html │ ├── SDLResetGlobalProperties.html │ ├── SDLRoofStatus.html │ ├── SDLSISData.html │ ├── SDLScreenManager.html │ ├── SDLScreenParams.html │ ├── SDLScrollableMessage.html │ ├── SDLSeatControlCapabilities.html │ ├── SDLSeatControlData.html │ ├── SDLSeatLocation.html │ ├── SDLSeatLocationCapability.html │ ├── SDLSeatMemoryAction.html │ ├── SDLSeatOccupancy.html │ ├── SDLSeatStatus.html │ ├── SDLSeekStreamingIndicator.html │ ├── SDLSendHapticData.html │ ├── SDLSendLocation.html │ ├── SDLSetAppIcon.html │ ├── SDLSetCloudAppProperties.html │ ├── SDLSetDisplayLayout.html │ ├── SDLSetDisplayLayoutResponse.html │ ├── SDLSetGlobalProperties.html │ ├── SDLSetInteriorVehicleData.html │ ├── SDLSetInteriorVehicleDataResponse.html │ ├── SDLSetMediaClockTimer.html │ ├── SDLShow.html │ ├── SDLShowAppMenu.html │ ├── SDLShowConstantTBT.html │ ├── SDLSingleTireStatus.html │ ├── SDLSlider.html │ ├── SDLSliderResponse.html │ ├── SDLSoftButton.html │ ├── SDLSoftButtonCapabilities.html │ ├── SDLSoftButtonObject.html │ ├── SDLSoftButtonState.html │ ├── SDLSpeak.html │ ├── SDLStabilityControlsStatus.html │ ├── SDLStartTime.html │ ├── SDLStationIDNumber.html │ ├── SDLStreamingMediaConfiguration.html │ ├── SDLStreamingMediaManager.html │ ├── SDLStreamingVideoScaleManager.html │ ├── SDLSubscribeButton.html │ ├── SDLSubscribeVehicleData.html │ ├── SDLSubscribeVehicleDataResponse.html │ ├── SDLSubtleAlert.html │ ├── SDLSubtleAlertResponse.html │ ├── SDLSystemCapability.html │ ├── SDLSystemCapabilityManager.html │ ├── SDLSystemInfo.html │ ├── SDLSystemRequest.html │ ├── SDLTTSChunk.html │ ├── SDLTemperature.html │ ├── SDLTemplateColorScheme.html │ ├── SDLTemplateConfiguration.html │ ├── SDLTextField.html │ ├── SDLTireStatus.html │ ├── SDLTouch.html │ ├── SDLTouchCoord.html │ ├── SDLTouchEvent.html │ ├── SDLTouchEventCapabilities.html │ ├── SDLTouchManager.html │ ├── SDLTurn.html │ ├── SDLUnpublishAppService.html │ ├── SDLUnsubscribeButton.html │ ├── SDLUnsubscribeVehicleData.html │ ├── SDLUnsubscribeVehicleDataResponse.html │ ├── SDLUpdateTurnList.html │ ├── SDLVRHelpItem.html │ ├── SDLVehicleDataResult.html │ ├── SDLVehicleType.html │ ├── SDLVersion.html │ ├── SDLVideoStreamingCapability.html │ ├── SDLVideoStreamingFormat.html │ ├── SDLVideoStreamingRange.html │ ├── SDLVoiceCommand.html │ ├── SDLWeatherAlert.html │ ├── SDLWeatherData.html │ ├── SDLWeatherServiceData.html │ ├── SDLWeatherServiceManifest.html │ ├── SDLWindowCapability.html │ ├── SDLWindowState.html │ ├── SDLWindowStatus.html │ └── SDLWindowTypeCapabilities.html ├── Constants.html ├── Enums.html ├── Enums │ ├── SDLAlertManagerError.html │ ├── SDLArtworkImageFormat.html │ ├── SDLAudioStreamManagerError.html │ ├── SDLCacheFileManagerError.html │ ├── SDLCarWindowRenderingType.html │ ├── SDLChoiceSetLayout.html │ ├── SDLChoiceSetManagerError.html │ ├── SDLDynamicMenuUpdatesMode.html │ ├── SDLEncryptionLifecycleManagerError.html │ ├── SDLFileManagerError.html │ ├── SDLFrameInfo.html │ ├── SDLFrameType.html │ ├── SDLLockScreenConfigurationDisplayMode.html │ ├── SDLLogBytesDirection.html │ ├── SDLLogFlag.html │ ├── SDLLogFormatType.html │ ├── SDLLogLevel.html │ ├── SDLManagerError.html │ ├── SDLMenuManagerError.html │ ├── SDLPermissionGroupStatus.html │ ├── SDLPermissionGroupType.html │ ├── SDLPredefinedWindows.html │ ├── SDLRPCMessageType.html │ ├── SDLRPCStoreError.html │ ├── SDLSecondaryTransports.html │ ├── SDLServiceType.html │ ├── SDLSoftButtonManagerError.html │ ├── SDLStreamingEncryptionFlag.html │ ├── SDLSubscribeButtonManagerError.html │ ├── SDLSystemCapabilityManagerError.html │ ├── SDLSystemError.html │ ├── SDLTextAndGraphicManagerError.html │ ├── SDLTouchIdentifier.html │ └── SDLTransportError.html ├── Protocols.html ├── Protocols │ ├── SDLAudioStreamManagerDelegate.html │ ├── SDLChoiceSetDelegate.html │ ├── SDLKeyboardDelegate.html │ ├── SDLLogTarget.html │ ├── SDLManagerDelegate.html │ ├── SDLSecurityType.html │ ├── SDLServiceEncryptionDelegate.html │ ├── SDLStreamingAudioManagerType.html │ ├── SDLStreamingMediaManagerDataSource.html │ ├── SDLStreamingVideoDelegate.html │ └── SDLTouchManagerDelegate.html ├── Type Definitions.html ├── badge.svg ├── index.html ├── search.json └── undocumented.json ├── generator ├── README.md ├── __init__.py ├── generator.py ├── paths.ini ├── requirements.txt ├── templates │ ├── SDLRPCFunctionNames.h.jinja2 │ ├── SDLRPCFunctionNames.m.jinja2 │ ├── SDLRPCParameterNames.h.jinja2 │ ├── SDLRPCParameterNames.m.jinja2 │ ├── base_struct_function.h.jinja2 │ ├── base_struct_function.m.jinja2 │ ├── copyright.jinja2 │ ├── description.jinja2 │ ├── description_param.jinja2 │ ├── enums │ │ ├── template.h.jinja2 │ │ └── template.m.jinja2 │ ├── functions │ │ ├── template.h.jinja2 │ │ └── template.m.jinja2 │ └── structs │ │ ├── template.h.jinja2 │ │ └── template.m.jinja2 ├── test │ ├── __init__.py │ ├── runner.py │ ├── test_CodeFormatAndQuality.py │ ├── test_enums.py │ ├── test_functions.py │ └── test_structs.py └── transformers │ ├── __init__.py │ ├── common_producer.py │ ├── enums_producer.py │ ├── functions_producer.py │ └── structs_producer.py ├── scripts ├── create_framework.sh ├── generate-documentation.sh ├── project_file_header_fix.sh └── release.sh └── theme ├── assets └── .exist └── templates ├── doc.mustache ├── nav.mustache ├── parameter.mustache ├── task.mustache ├── task_link.mustache ├── task_links.mustache └── tasks.mustache /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.md merge=union -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/best-practice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.github/ISSUE_TEMPLATE/best-practice.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/internal-proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.github/ISSUE_TEMPLATE/internal-proposal.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /DEPENDENCIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/DEPENDENCIES.md -------------------------------------------------------------------------------- /Example Apps/Example ObjC/AlertManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/AlertManager.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/AlertManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/AlertManager.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/AppDelegate.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/AppDelegate.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/AudioManager.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/AudioManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/AudioManager.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/ButtonManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/ButtonManager.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/ButtonManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/ButtonManager.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/MenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/MenuManager.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/MenuManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/MenuManager.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/Preferences.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/Preferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/Preferences.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/ProxyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/ProxyManager.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/ProxyManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/ProxyManager.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/TextValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/TextValidator.h -------------------------------------------------------------------------------- /Example Apps/Example ObjC/TextValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/TextValidator.m -------------------------------------------------------------------------------- /Example Apps/Example ObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example ObjC/main.m -------------------------------------------------------------------------------- /Example Apps/Example Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Example Apps/Example Swift/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example Swift/LaunchScreen.xib -------------------------------------------------------------------------------- /Example Apps/Example Swift/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example Swift/Main.storyboard -------------------------------------------------------------------------------- /Example Apps/Example Swift/MenuManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Example Swift/MenuManager.swift -------------------------------------------------------------------------------- /Example Apps/Shared/AppConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Shared/AppConstants.h -------------------------------------------------------------------------------- /Example Apps/Shared/AppConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Example Apps/Shared/AppConstants.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/README.md -------------------------------------------------------------------------------- /SmartDeviceLink-iOS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink-iOS.podspec -------------------------------------------------------------------------------- /SmartDeviceLink.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink.podspec -------------------------------------------------------------------------------- /SmartDeviceLink/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/Info.plist -------------------------------------------------------------------------------- /SmartDeviceLink/private/CGPoint_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/CGPoint_Util.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/CGPoint_Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/CGPoint_Util.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/NSArray+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/NSArray+Extensions.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/NSArray+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/NSArray+Extensions.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/NSBundle+SDLBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/NSBundle+SDLBundle.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/NSBundle+SDLBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/NSBundle+SDLBundle.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLAlertManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLAlertManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLAlertManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLAlertManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLCarWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLCarWindow.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLCarWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLCarWindow.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLError.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLError.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLFileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLFileWrapper.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLFileWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLFileWrapper.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLGlobals.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLGlobals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLGlobals.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLH264Packetizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLH264Packetizer.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLHexUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLHexUtility.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLHexUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLHexUtility.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPConstants.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPConstants.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPDataSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPDataSession.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPDataSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPDataSession.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPSession.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPSession.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPTransport.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIAPTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIAPTransport.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIconArchiveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIconArchiveFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLIconArchiveFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLIconArchiveFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLLogModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLLogModel.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLLogModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLLogModel.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLMacros.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLMacros.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLMenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLMenuManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLMenuManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLMenuManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLProtocol.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLProtocol.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLProtocolHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLProtocolHeader.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLProtocolHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLProtocolHeader.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLProtocolMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLProtocolMessage.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLProtocolMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLProtocolMessage.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLRPCPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLRPCPayload.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLRPCPayload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLRPCPayload.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLStateMachine.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLStateMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLStateMachine.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLTCPTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLTCPTransport.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLTCPTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLTCPTransport.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLTimer.h -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLTimer.m -------------------------------------------------------------------------------- /SmartDeviceLink/private/SDLTransportType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/private/SDLTransportType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/NSNumber+NumberType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/NSNumber+NumberType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAddCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAddCommand.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAddCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAddCommand.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAddSubMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAddSubMenu.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAddSubMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAddSubMenu.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAirbagStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAirbagStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAirbagStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAirbagStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlert.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlert.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertAudioData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertAudioData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertAudioData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertAudioData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertManeuver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertManeuver.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertManeuver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertManeuver.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertView.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAlertView.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppCapability.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppCapability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppCapability.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppHMIType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppHMIType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppHMIType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppHMIType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppInfo.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppInfo.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppServiceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppServiceData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppServiceData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppServiceData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppServiceRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppServiceRecord.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppServiceRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppServiceRecord.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppServiceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppServiceType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAppServiceType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAppServiceType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLArtwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLArtwork.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLArtwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLArtwork.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioControlData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioControlData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioControlData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioControlData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLAudioType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLAudioType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLBeltStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLBeltStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLBeltStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLBeltStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLBitsPerSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLBitsPerSample.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLBitsPerSample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLBitsPerSample.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLBodyInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLBodyInformation.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLBodyInformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLBodyInformation.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonEventMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonEventMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonEventMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonEventMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonName.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonName.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonPress.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonPress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonPress.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonPressMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonPressMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLButtonPressMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLButtonPressMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCapacityUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCapacityUnit.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCapacityUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCapacityUnit.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCarModeStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCarModeStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCarModeStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCarModeStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCharacterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCharacterSet.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCharacterSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCharacterSet.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLChoice.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLChoice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLChoice.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLChoiceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLChoiceCell.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLChoiceCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLChoiceCell.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLChoiceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLChoiceSet.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLChoiceSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLChoiceSet.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLClimateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLClimateData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLClimateData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLClimateData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCloseApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCloseApplication.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCloseApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCloseApplication.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCompassDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCompassDirection.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCompassDirection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCompassDirection.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLConfiguration.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLConfiguration.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCreateWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCreateWindow.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLCreateWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLCreateWindow.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDIDResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDIDResult.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDIDResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDIDResult.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDateTime.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDateTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDateTime.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDefrostZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDefrostZone.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDefrostZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDefrostZone.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteCommand.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteCommand.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteSubMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteSubMenu.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteSubMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteSubMenu.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteWindow.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeleteWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeleteWindow.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeliveryMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeliveryMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeliveryMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeliveryMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeviceInfo.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeviceInfo.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeviceStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeviceStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDeviceStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDeviceStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDialNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDialNumber.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDialNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDialNumber.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDimension.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDimension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDimension.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDirection.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDirection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDirection.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDisplayMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDisplayMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDisplayMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDisplayType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDisplayType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDisplayType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDisplayType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDistanceUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDistanceUnit.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDistanceUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDistanceUnit.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDoorStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDoorStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDoorStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDoorStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDoorStatusType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDoorStatusType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLDoorStatusType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLDoorStatusType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLECallInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLECallInfo.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLECallInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLECallInfo.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEmergencyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEmergencyEvent.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEmergencyEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEmergencyEvent.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEncodedSyncPData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEncodedSyncPData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEncodedSyncPData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEncodedSyncPData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEndAudioPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEndAudioPassThru.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEndAudioPassThru.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEndAudioPassThru.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEnum.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLEnum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLEnum.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLErrorConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLErrorConstants.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLErrorConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLErrorConstants.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFileManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFileManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFileType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFileType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFileType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFuelCutoffStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFuelCutoffStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFuelCutoffStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFuelCutoffStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFuelRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFuelRange.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFuelRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFuelRange.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFuelType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFuelType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFuelType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFuelType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFunctionID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFunctionID.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLFunctionID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLFunctionID.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGPSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGPSData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGPSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGPSData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGateStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGateStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGateStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGateStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGearStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGearStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGearStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGearStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGenericResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGenericResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGenericResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGenericResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetDTCs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetDTCs.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetDTCs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetDTCs.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetDTCsResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetDTCsResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetDTCsResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetDTCsResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetFileResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetFileResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetVehicleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetVehicleData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetVehicleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetVehicleData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetWayPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetWayPoints.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGetWayPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGetWayPoints.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGlobalProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGlobalProperty.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGlobalProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGlobalProperty.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGrid.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLGrid.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHMICapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHMICapabilities.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHMICapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHMICapabilities.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHMILevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHMILevel.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHMILevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHMILevel.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHMIPermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHMIPermissions.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHMIPermissions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHMIPermissions.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHapticRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHapticRect.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHapticRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHapticRect.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHeadLampStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHeadLampStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLHeadLampStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLHeadLampStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLIgnitionStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLIgnitionStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLIgnitionStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLIgnitionStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImage.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImage.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageField.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageField.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageFieldName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageFieldName.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageFieldName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageFieldName.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageResolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageResolution.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLImageType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLImageType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLKeyboardEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLKeyboardEvent.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLKeyboardEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLKeyboardEvent.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLKeyboardLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLKeyboardLayout.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLKeyboardLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLKeyboardLayout.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLKeypressMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLKeypressMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLKeypressMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLKeypressMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLanguage.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLanguage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLanguage.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLayoutMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLayoutMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLayoutMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLayoutMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLightName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLightName.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLightName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLightName.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLightState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLightState.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLightState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLightState.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLightStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLightStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLightStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLightStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLListFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLListFiles.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLListFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLListFiles.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogConstants.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogFileModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogFileModule.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogFileModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogFileModule.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogFilter.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogFilter.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogMacros.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogTarget.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogTargetFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogTargetFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogTargetFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogTargetFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogTargetOSLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogTargetOSLog.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLLogTargetOSLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLLogTargetOSLog.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMassageCushion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMassageCushion.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMassageCushion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMassageCushion.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMassageMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMassageMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMassageMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMassageMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMassageZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMassageZone.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMassageZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMassageZone.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMediaType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMediaType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMediaType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMenuCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMenuCell.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMenuCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMenuCell.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMenuLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMenuLayout.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMenuLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMenuLayout.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMenuParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMenuParams.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMenuParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMenuParams.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMetadataTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMetadataTags.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMetadataTags.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMetadataTags.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMetadataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMetadataType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMetadataType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMetadataType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLModuleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLModuleData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLModuleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLModuleData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLModuleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLModuleInfo.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLModuleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLModuleInfo.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLModuleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLModuleType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLModuleType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLModuleType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMsgVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMsgVersion.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMsgVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMsgVersion.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMyKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMyKey.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLMyKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLMyKey.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOasisAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOasisAddress.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOasisAddress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOasisAddress.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnButtonEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnButtonEvent.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnButtonEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnButtonEvent.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnButtonPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnButtonPress.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnButtonPress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnButtonPress.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnCommand.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnCommand.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnHMIStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnHMIStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnHMIStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnHMIStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnHashChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnHashChange.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnHashChange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnHashChange.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnRCStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnRCStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnRCStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnRCStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnSyncPData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnSyncPData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnSyncPData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnSyncPData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnTouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnTouchEvent.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnTouchEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnTouchEvent.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnUpdateFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnUpdateFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnUpdateFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnUpdateFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnVehicleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnVehicleData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLOnVehicleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLOnVehicleData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPRNDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPRNDL.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPRNDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPRNDL.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPermissionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPermissionItem.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPermissionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPermissionItem.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPinchGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPinchGesture.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPinchGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPinchGesture.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPutFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPutFile.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLPutFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLPutFile.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRDSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRDSData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRDSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRDSData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRGBColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRGBColor.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRGBColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRGBColor.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCMessage.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCMessage.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCMessageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCMessageType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCMessageType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCMessageType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCRequest.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCRequest.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCStruct.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRPCStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRPCStruct.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRadioBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRadioBand.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRadioBand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRadioBand.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRadioState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRadioState.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRadioState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRadioState.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLReadDID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLReadDID.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLReadDID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLReadDID.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRectangle.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRectangle.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRequestType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRequestType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRequestType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLResult.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLResult.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRoofStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRoofStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLRoofStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLRoofStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSISData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSISData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSISData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSISData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSamplingRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSamplingRate.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSamplingRate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSamplingRate.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLScreenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLScreenManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLScreenManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLScreenManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLScreenParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLScreenParams.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLScreenParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLScreenParams.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSeatLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSeatLocation.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSeatLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSeatLocation.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSeatOccupancy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSeatOccupancy.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSeatOccupancy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSeatOccupancy.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSeatStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSeatStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSeatStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSeatStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSecurityType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSecurityType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSendHapticData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSendHapticData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSendHapticData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSendHapticData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSendLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSendLocation.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSendLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSendLocation.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSetAppIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSetAppIcon.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSetAppIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSetAppIcon.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLShow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLShow.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLShow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLShow.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLShowAppMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLShowAppMenu.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLShowAppMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLShowAppMenu.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLShowResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLShowResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLShowResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLShowResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSlider.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSlider.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSliderResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSliderResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSliderResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSliderResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSoftButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSoftButton.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSoftButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSoftButton.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSoftButtonType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSoftButtonType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSoftButtonType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSoftButtonType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSpeak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSpeak.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSpeak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSpeak.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSpeakResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSpeakResponse.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSpeakResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSpeakResponse.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLStartTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLStartTime.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLStartTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLStartTime.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLStaticIconName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLStaticIconName.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLStaticIconName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLStaticIconName.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSubtleAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSubtleAlert.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSubtleAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSubtleAlert.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSupportedSeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSupportedSeat.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSupportedSeat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSupportedSeat.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSyncPData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSyncPData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSyncPData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSyncPData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemAction.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemAction.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemContext.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemContext.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemInfo.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemInfo.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemRequest.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLSystemRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLSystemRequest.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTBTState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTBTState.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTBTState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTBTState.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTPMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTPMS.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTPMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTPMS.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTTSChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTTSChunk.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTTSChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTTSChunk.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTemperature.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTemperature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTemperature.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTextAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTextAlignment.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTextAlignment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTextAlignment.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTextField.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTextField.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTextFieldName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTextFieldName.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTextFieldName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTextFieldName.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTimerMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTimerMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTimerMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTimerMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTireStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTireStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTireStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTireStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouch.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouch.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchCoord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchCoord.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchCoord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchCoord.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchEvent.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchEvent.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchManager.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchManager.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTouchType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTouchType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTriggerSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTriggerSource.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTriggerSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTriggerSource.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTurn.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTurn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTurn.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTurnSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTurnSignal.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLTurnSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLTurnSignal.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLUpdateMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLUpdateMode.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLUpdateMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLUpdateMode.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLUpdateTurnList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLUpdateTurnList.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLUpdateTurnList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLUpdateTurnList.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVehicleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVehicleType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVehicleType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVehicleType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVersion.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVersion.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVoiceCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVoiceCommand.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVoiceCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVoiceCommand.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVrCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVrCapabilities.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVrCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVrCapabilities.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVrHelpItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVrHelpItem.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLVrHelpItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLVrHelpItem.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWayPointType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWayPointType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWayPointType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWayPointType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWeatherAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWeatherAlert.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWeatherAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWeatherAlert.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWeatherData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWeatherData.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWeatherData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWeatherData.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWindowState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWindowState.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWindowState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWindowState.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWindowStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWindowStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWindowStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWindowStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWindowType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWindowType.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWindowType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWindowType.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWiperStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWiperStatus.h -------------------------------------------------------------------------------- /SmartDeviceLink/public/SDLWiperStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SDLWiperStatus.m -------------------------------------------------------------------------------- /SmartDeviceLink/public/SmartDeviceLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLink/public/SmartDeviceLink.h -------------------------------------------------------------------------------- /SmartDeviceLinkSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkSwift/Info.plist -------------------------------------------------------------------------------- /SmartDeviceLinkSwift/SDLLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkSwift/SDLLog.swift -------------------------------------------------------------------------------- /SmartDeviceLinkTests/Assets/testAudio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/Assets/testAudio.mp3 -------------------------------------------------------------------------------- /SmartDeviceLinkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/Info.plist -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SDLAlertManagerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SDLAlertManagerSpec.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SDLAlertViewSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SDLAlertViewSpec.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SDLAudioDataSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SDLAudioDataSpec.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SDLCarWindowSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SDLCarWindowSpec.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SDLLogConstantsSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SDLLogConstantsSpec.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SDLMenuRunScoreSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SDLMenuRunScoreSpec.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/SwiftSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/SwiftSpec.swift -------------------------------------------------------------------------------- /SmartDeviceLinkTests/TestResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/TestResponse.h -------------------------------------------------------------------------------- /SmartDeviceLinkTests/TestResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/TestResponse.m -------------------------------------------------------------------------------- /SmartDeviceLinkTests/TestSmartConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/TestSmartConnection.h -------------------------------------------------------------------------------- /SmartDeviceLinkTests/TestSmartConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/SmartDeviceLinkTests/TestSmartConnection.m -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/.exist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Categories.html -------------------------------------------------------------------------------- /docs/Categories/NSString(SDLEnum).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Categories/NSString(SDLEnum).html -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/SDLAddCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAddCommand.html -------------------------------------------------------------------------------- /docs/Classes/SDLAddSubMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAddSubMenu.html -------------------------------------------------------------------------------- /docs/Classes/SDLAirbagStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAirbagStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLAlert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAlert.html -------------------------------------------------------------------------------- /docs/Classes/SDLAlertAudioData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAlertAudioData.html -------------------------------------------------------------------------------- /docs/Classes/SDLAlertManeuver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAlertManeuver.html -------------------------------------------------------------------------------- /docs/Classes/SDLAlertResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAlertResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLAlertView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAlertView.html -------------------------------------------------------------------------------- /docs/Classes/SDLAppCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAppCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLAppInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAppInfo.html -------------------------------------------------------------------------------- /docs/Classes/SDLAppServiceCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAppServiceCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLAppServiceData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAppServiceData.html -------------------------------------------------------------------------------- /docs/Classes/SDLAppServiceManifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAppServiceManifest.html -------------------------------------------------------------------------------- /docs/Classes/SDLAppServiceRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAppServiceRecord.html -------------------------------------------------------------------------------- /docs/Classes/SDLArtwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLArtwork.html -------------------------------------------------------------------------------- /docs/Classes/SDLAudioControlData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAudioControlData.html -------------------------------------------------------------------------------- /docs/Classes/SDLAudioData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAudioData.html -------------------------------------------------------------------------------- /docs/Classes/SDLAudioFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAudioFile.html -------------------------------------------------------------------------------- /docs/Classes/SDLAudioStreamManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLAudioStreamManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLBeltStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLBeltStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLBodyInformation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLBodyInformation.html -------------------------------------------------------------------------------- /docs/Classes/SDLButtonCapabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLButtonCapabilities.html -------------------------------------------------------------------------------- /docs/Classes/SDLButtonPress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLButtonPress.html -------------------------------------------------------------------------------- /docs/Classes/SDLCancelInteraction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLCancelInteraction.html -------------------------------------------------------------------------------- /docs/Classes/SDLChangeRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLChangeRegistration.html -------------------------------------------------------------------------------- /docs/Classes/SDLChoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLChoice.html -------------------------------------------------------------------------------- /docs/Classes/SDLChoiceCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLChoiceCell.html -------------------------------------------------------------------------------- /docs/Classes/SDLChoiceSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLChoiceSet.html -------------------------------------------------------------------------------- /docs/Classes/SDLClimateControlData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLClimateControlData.html -------------------------------------------------------------------------------- /docs/Classes/SDLClimateData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLClimateData.html -------------------------------------------------------------------------------- /docs/Classes/SDLCloudAppProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLCloudAppProperties.html -------------------------------------------------------------------------------- /docs/Classes/SDLClusterModeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLClusterModeStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/SDLCreateWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLCreateWindow.html -------------------------------------------------------------------------------- /docs/Classes/SDLDIDResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDIDResult.html -------------------------------------------------------------------------------- /docs/Classes/SDLDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDateTime.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeleteCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeleteCommand.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeleteFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeleteFile.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeleteFileResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeleteFileResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeleteSubMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeleteSubMenu.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeleteWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeleteWindow.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeviceInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeviceInfo.html -------------------------------------------------------------------------------- /docs/Classes/SDLDeviceStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDeviceStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLDiagnosticMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDiagnosticMessage.html -------------------------------------------------------------------------------- /docs/Classes/SDLDialNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDialNumber.html -------------------------------------------------------------------------------- /docs/Classes/SDLDisplayCapabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDisplayCapabilities.html -------------------------------------------------------------------------------- /docs/Classes/SDLDisplayCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDisplayCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLDoorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLDoorStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLECallInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLECallInfo.html -------------------------------------------------------------------------------- /docs/Classes/SDLEmergencyEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLEmergencyEvent.html -------------------------------------------------------------------------------- /docs/Classes/SDLEncodedSyncPData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLEncodedSyncPData.html -------------------------------------------------------------------------------- /docs/Classes/SDLEqualizerSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLEqualizerSettings.html -------------------------------------------------------------------------------- /docs/Classes/SDLFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLFile.html -------------------------------------------------------------------------------- /docs/Classes/SDLFileManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLFileManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLFuelRange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLFuelRange.html -------------------------------------------------------------------------------- /docs/Classes/SDLFunctionID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLFunctionID.html -------------------------------------------------------------------------------- /docs/Classes/SDLGPSData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGPSData.html -------------------------------------------------------------------------------- /docs/Classes/SDLGateStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGateStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLGearStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGearStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetAppServiceData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetAppServiceData.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetCloudAppProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetCloudAppProperties.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetDTCs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetDTCs.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetDTCsResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetDTCsResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetFile.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetFileResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetFileResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetSystemCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetSystemCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetVehicleData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetVehicleData.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetWaypoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetWaypoints.html -------------------------------------------------------------------------------- /docs/Classes/SDLGetWaypointsResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGetWaypointsResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLGrid.html -------------------------------------------------------------------------------- /docs/Classes/SDLHMICapabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLHMICapabilities.html -------------------------------------------------------------------------------- /docs/Classes/SDLHMIPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLHMIPermissions.html -------------------------------------------------------------------------------- /docs/Classes/SDLHapticRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLHapticRect.html -------------------------------------------------------------------------------- /docs/Classes/SDLHeadLampStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLHeadLampStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLImage.html -------------------------------------------------------------------------------- /docs/Classes/SDLImageField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLImageField.html -------------------------------------------------------------------------------- /docs/Classes/SDLImageResolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLImageResolution.html -------------------------------------------------------------------------------- /docs/Classes/SDLKeyboardCapabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLKeyboardCapabilities.html -------------------------------------------------------------------------------- /docs/Classes/SDLKeyboardProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLKeyboardProperties.html -------------------------------------------------------------------------------- /docs/Classes/SDLLightCapabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLightCapabilities.html -------------------------------------------------------------------------------- /docs/Classes/SDLLightControlData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLightControlData.html -------------------------------------------------------------------------------- /docs/Classes/SDLLightState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLightState.html -------------------------------------------------------------------------------- /docs/Classes/SDLListFilesResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLListFilesResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLLocationCoordinate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLocationCoordinate.html -------------------------------------------------------------------------------- /docs/Classes/SDLLocationDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLocationDetails.html -------------------------------------------------------------------------------- /docs/Classes/SDLLogConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLogConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/SDLLogFileModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLogFileModule.html -------------------------------------------------------------------------------- /docs/Classes/SDLLogFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLogFilter.html -------------------------------------------------------------------------------- /docs/Classes/SDLLogManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLLogManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLMassageModeData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMassageModeData.html -------------------------------------------------------------------------------- /docs/Classes/SDLMediaServiceData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMediaServiceData.html -------------------------------------------------------------------------------- /docs/Classes/SDLMenuCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMenuCell.html -------------------------------------------------------------------------------- /docs/Classes/SDLMenuConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMenuConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/SDLMenuParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMenuParams.html -------------------------------------------------------------------------------- /docs/Classes/SDLMetadataTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMetadataTags.html -------------------------------------------------------------------------------- /docs/Classes/SDLModuleData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLModuleData.html -------------------------------------------------------------------------------- /docs/Classes/SDLModuleInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLModuleInfo.html -------------------------------------------------------------------------------- /docs/Classes/SDLMsgVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMsgVersion.html -------------------------------------------------------------------------------- /docs/Classes/SDLMyKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLMyKey.html -------------------------------------------------------------------------------- /docs/Classes/SDLNavigationCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLNavigationCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLNavigationInstruction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLNavigationInstruction.html -------------------------------------------------------------------------------- /docs/Classes/SDLNavigationServiceData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLNavigationServiceData.html -------------------------------------------------------------------------------- /docs/Classes/SDLNotificationConstants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLNotificationConstants.html -------------------------------------------------------------------------------- /docs/Classes/SDLOasisAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOasisAddress.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnAppServiceData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnAppServiceData.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnButtonEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnButtonEvent.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnButtonPress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnButtonPress.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnCommand.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnDriverDistraction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnDriverDistraction.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnEncodedSyncPData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnEncodedSyncPData.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnHMIStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnHMIStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnHashChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnHashChange.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnInteriorVehicleData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnInteriorVehicleData.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnKeyboardInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnKeyboardInput.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnLanguageChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnLanguageChange.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnPermissionsChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnPermissionsChange.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnRCStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnRCStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnSyncPData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnSyncPData.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnSystemRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnSystemRequest.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnTBTClientState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnTBTClientState.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnTouchEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnTouchEvent.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnUpdateFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnUpdateFile.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnUpdateSubMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnUpdateSubMenu.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnVehicleData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnVehicleData.html -------------------------------------------------------------------------------- /docs/Classes/SDLOnWaypointChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLOnWaypointChange.html -------------------------------------------------------------------------------- /docs/Classes/SDLParameterPermissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLParameterPermissions.html -------------------------------------------------------------------------------- /docs/Classes/SDLPerformAudioPassThru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPerformAudioPassThru.html -------------------------------------------------------------------------------- /docs/Classes/SDLPerformInteraction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPerformInteraction.html -------------------------------------------------------------------------------- /docs/Classes/SDLPermissionElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPermissionElement.html -------------------------------------------------------------------------------- /docs/Classes/SDLPermissionItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPermissionItem.html -------------------------------------------------------------------------------- /docs/Classes/SDLPermissionManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPermissionManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLPhoneCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPhoneCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLPinchGesture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPinchGesture.html -------------------------------------------------------------------------------- /docs/Classes/SDLPublishAppService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPublishAppService.html -------------------------------------------------------------------------------- /docs/Classes/SDLPutFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPutFile.html -------------------------------------------------------------------------------- /docs/Classes/SDLPutFileResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLPutFileResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLRDSData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRDSData.html -------------------------------------------------------------------------------- /docs/Classes/SDLRGBColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRGBColor.html -------------------------------------------------------------------------------- /docs/Classes/SDLRPCMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRPCMessage.html -------------------------------------------------------------------------------- /docs/Classes/SDLRPCPermissionStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRPCPermissionStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLRPCRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRPCRequest.html -------------------------------------------------------------------------------- /docs/Classes/SDLRPCResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRPCResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLRPCStruct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRPCStruct.html -------------------------------------------------------------------------------- /docs/Classes/SDLRadioControlData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRadioControlData.html -------------------------------------------------------------------------------- /docs/Classes/SDLReadDID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLReadDID.html -------------------------------------------------------------------------------- /docs/Classes/SDLReadDIDResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLReadDIDResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLRectangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRectangle.html -------------------------------------------------------------------------------- /docs/Classes/SDLRegisterAppInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRegisterAppInterface.html -------------------------------------------------------------------------------- /docs/Classes/SDLResetGlobalProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLResetGlobalProperties.html -------------------------------------------------------------------------------- /docs/Classes/SDLRoofStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLRoofStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLSISData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSISData.html -------------------------------------------------------------------------------- /docs/Classes/SDLScreenManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLScreenManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLScreenParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLScreenParams.html -------------------------------------------------------------------------------- /docs/Classes/SDLScrollableMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLScrollableMessage.html -------------------------------------------------------------------------------- /docs/Classes/SDLSeatControlData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSeatControlData.html -------------------------------------------------------------------------------- /docs/Classes/SDLSeatLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSeatLocation.html -------------------------------------------------------------------------------- /docs/Classes/SDLSeatMemoryAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSeatMemoryAction.html -------------------------------------------------------------------------------- /docs/Classes/SDLSeatOccupancy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSeatOccupancy.html -------------------------------------------------------------------------------- /docs/Classes/SDLSeatStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSeatStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLSendHapticData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSendHapticData.html -------------------------------------------------------------------------------- /docs/Classes/SDLSendLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSendLocation.html -------------------------------------------------------------------------------- /docs/Classes/SDLSetAppIcon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSetAppIcon.html -------------------------------------------------------------------------------- /docs/Classes/SDLSetCloudAppProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSetCloudAppProperties.html -------------------------------------------------------------------------------- /docs/Classes/SDLSetDisplayLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSetDisplayLayout.html -------------------------------------------------------------------------------- /docs/Classes/SDLSetGlobalProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSetGlobalProperties.html -------------------------------------------------------------------------------- /docs/Classes/SDLSetMediaClockTimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSetMediaClockTimer.html -------------------------------------------------------------------------------- /docs/Classes/SDLShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLShow.html -------------------------------------------------------------------------------- /docs/Classes/SDLShowAppMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLShowAppMenu.html -------------------------------------------------------------------------------- /docs/Classes/SDLShowConstantTBT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLShowConstantTBT.html -------------------------------------------------------------------------------- /docs/Classes/SDLSingleTireStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSingleTireStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSlider.html -------------------------------------------------------------------------------- /docs/Classes/SDLSliderResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSliderResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLSoftButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSoftButton.html -------------------------------------------------------------------------------- /docs/Classes/SDLSoftButtonObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSoftButtonObject.html -------------------------------------------------------------------------------- /docs/Classes/SDLSoftButtonState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSoftButtonState.html -------------------------------------------------------------------------------- /docs/Classes/SDLSpeak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSpeak.html -------------------------------------------------------------------------------- /docs/Classes/SDLStartTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLStartTime.html -------------------------------------------------------------------------------- /docs/Classes/SDLStationIDNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLStationIDNumber.html -------------------------------------------------------------------------------- /docs/Classes/SDLStreamingMediaManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLStreamingMediaManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLSubscribeButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSubscribeButton.html -------------------------------------------------------------------------------- /docs/Classes/SDLSubscribeVehicleData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSubscribeVehicleData.html -------------------------------------------------------------------------------- /docs/Classes/SDLSubtleAlert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSubtleAlert.html -------------------------------------------------------------------------------- /docs/Classes/SDLSubtleAlertResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSubtleAlertResponse.html -------------------------------------------------------------------------------- /docs/Classes/SDLSystemCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSystemCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLSystemInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSystemInfo.html -------------------------------------------------------------------------------- /docs/Classes/SDLSystemRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLSystemRequest.html -------------------------------------------------------------------------------- /docs/Classes/SDLTTSChunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTTSChunk.html -------------------------------------------------------------------------------- /docs/Classes/SDLTemperature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTemperature.html -------------------------------------------------------------------------------- /docs/Classes/SDLTemplateColorScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTemplateColorScheme.html -------------------------------------------------------------------------------- /docs/Classes/SDLTemplateConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTemplateConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/SDLTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTextField.html -------------------------------------------------------------------------------- /docs/Classes/SDLTireStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTireStatus.html -------------------------------------------------------------------------------- /docs/Classes/SDLTouch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTouch.html -------------------------------------------------------------------------------- /docs/Classes/SDLTouchCoord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTouchCoord.html -------------------------------------------------------------------------------- /docs/Classes/SDLTouchEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTouchEvent.html -------------------------------------------------------------------------------- /docs/Classes/SDLTouchManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTouchManager.html -------------------------------------------------------------------------------- /docs/Classes/SDLTurn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLTurn.html -------------------------------------------------------------------------------- /docs/Classes/SDLUnpublishAppService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLUnpublishAppService.html -------------------------------------------------------------------------------- /docs/Classes/SDLUnsubscribeButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLUnsubscribeButton.html -------------------------------------------------------------------------------- /docs/Classes/SDLUpdateTurnList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLUpdateTurnList.html -------------------------------------------------------------------------------- /docs/Classes/SDLVRHelpItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVRHelpItem.html -------------------------------------------------------------------------------- /docs/Classes/SDLVehicleDataResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVehicleDataResult.html -------------------------------------------------------------------------------- /docs/Classes/SDLVehicleType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVehicleType.html -------------------------------------------------------------------------------- /docs/Classes/SDLVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVersion.html -------------------------------------------------------------------------------- /docs/Classes/SDLVideoStreamingFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVideoStreamingFormat.html -------------------------------------------------------------------------------- /docs/Classes/SDLVideoStreamingRange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVideoStreamingRange.html -------------------------------------------------------------------------------- /docs/Classes/SDLVoiceCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLVoiceCommand.html -------------------------------------------------------------------------------- /docs/Classes/SDLWeatherAlert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLWeatherAlert.html -------------------------------------------------------------------------------- /docs/Classes/SDLWeatherData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLWeatherData.html -------------------------------------------------------------------------------- /docs/Classes/SDLWeatherServiceData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLWeatherServiceData.html -------------------------------------------------------------------------------- /docs/Classes/SDLWindowCapability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLWindowCapability.html -------------------------------------------------------------------------------- /docs/Classes/SDLWindowState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLWindowState.html -------------------------------------------------------------------------------- /docs/Classes/SDLWindowStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Classes/SDLWindowStatus.html -------------------------------------------------------------------------------- /docs/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Constants.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/SDLAlertManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLAlertManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLArtworkImageFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLArtworkImageFormat.html -------------------------------------------------------------------------------- /docs/Enums/SDLAudioStreamManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLAudioStreamManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLCacheFileManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLCacheFileManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLCarWindowRenderingType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLCarWindowRenderingType.html -------------------------------------------------------------------------------- /docs/Enums/SDLChoiceSetLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLChoiceSetLayout.html -------------------------------------------------------------------------------- /docs/Enums/SDLChoiceSetManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLChoiceSetManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLDynamicMenuUpdatesMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLDynamicMenuUpdatesMode.html -------------------------------------------------------------------------------- /docs/Enums/SDLFileManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLFileManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLFrameInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLFrameInfo.html -------------------------------------------------------------------------------- /docs/Enums/SDLFrameType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLFrameType.html -------------------------------------------------------------------------------- /docs/Enums/SDLLogBytesDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLLogBytesDirection.html -------------------------------------------------------------------------------- /docs/Enums/SDLLogFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLLogFlag.html -------------------------------------------------------------------------------- /docs/Enums/SDLLogFormatType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLLogFormatType.html -------------------------------------------------------------------------------- /docs/Enums/SDLLogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLLogLevel.html -------------------------------------------------------------------------------- /docs/Enums/SDLManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLMenuManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLMenuManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLPermissionGroupStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLPermissionGroupStatus.html -------------------------------------------------------------------------------- /docs/Enums/SDLPermissionGroupType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLPermissionGroupType.html -------------------------------------------------------------------------------- /docs/Enums/SDLPredefinedWindows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLPredefinedWindows.html -------------------------------------------------------------------------------- /docs/Enums/SDLRPCMessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLRPCMessageType.html -------------------------------------------------------------------------------- /docs/Enums/SDLRPCStoreError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLRPCStoreError.html -------------------------------------------------------------------------------- /docs/Enums/SDLSecondaryTransports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLSecondaryTransports.html -------------------------------------------------------------------------------- /docs/Enums/SDLServiceType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLServiceType.html -------------------------------------------------------------------------------- /docs/Enums/SDLSoftButtonManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLSoftButtonManagerError.html -------------------------------------------------------------------------------- /docs/Enums/SDLStreamingEncryptionFlag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLStreamingEncryptionFlag.html -------------------------------------------------------------------------------- /docs/Enums/SDLSystemError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLSystemError.html -------------------------------------------------------------------------------- /docs/Enums/SDLTouchIdentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLTouchIdentifier.html -------------------------------------------------------------------------------- /docs/Enums/SDLTransportError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Enums/SDLTransportError.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/SDLChoiceSetDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Protocols/SDLChoiceSetDelegate.html -------------------------------------------------------------------------------- /docs/Protocols/SDLKeyboardDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Protocols/SDLKeyboardDelegate.html -------------------------------------------------------------------------------- /docs/Protocols/SDLLogTarget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Protocols/SDLLogTarget.html -------------------------------------------------------------------------------- /docs/Protocols/SDLManagerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Protocols/SDLManagerDelegate.html -------------------------------------------------------------------------------- /docs/Protocols/SDLSecurityType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Protocols/SDLSecurityType.html -------------------------------------------------------------------------------- /docs/Type Definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/Type Definitions.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/README.md -------------------------------------------------------------------------------- /generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/generator.py -------------------------------------------------------------------------------- /generator/paths.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/paths.ini -------------------------------------------------------------------------------- /generator/requirements.txt: -------------------------------------------------------------------------------- 1 | xmlschema 2 | Jinja2 3 | coverage 4 | pathlib2 5 | flake8 -------------------------------------------------------------------------------- /generator/templates/copyright.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/templates/copyright.jinja2 -------------------------------------------------------------------------------- /generator/templates/description.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/templates/description.jinja2 -------------------------------------------------------------------------------- /generator/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/test/runner.py -------------------------------------------------------------------------------- /generator/test/test_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/test/test_enums.py -------------------------------------------------------------------------------- /generator/test/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/test/test_functions.py -------------------------------------------------------------------------------- /generator/test/test_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/test/test_structs.py -------------------------------------------------------------------------------- /generator/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/transformers/common_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/transformers/common_producer.py -------------------------------------------------------------------------------- /generator/transformers/enums_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/transformers/enums_producer.py -------------------------------------------------------------------------------- /generator/transformers/structs_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/generator/transformers/structs_producer.py -------------------------------------------------------------------------------- /scripts/create_framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/scripts/create_framework.sh -------------------------------------------------------------------------------- /scripts/generate-documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/scripts/generate-documentation.sh -------------------------------------------------------------------------------- /scripts/project_file_header_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/scripts/project_file_header_fix.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /theme/assets/.exist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/doc.mustache -------------------------------------------------------------------------------- /theme/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/nav.mustache -------------------------------------------------------------------------------- /theme/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/parameter.mustache -------------------------------------------------------------------------------- /theme/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/task.mustache -------------------------------------------------------------------------------- /theme/templates/task_link.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/task_link.mustache -------------------------------------------------------------------------------- /theme/templates/task_links.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/task_links.mustache -------------------------------------------------------------------------------- /theme/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartdevicelink/sdl_ios/HEAD/theme/templates/tasks.mustache --------------------------------------------------------------------------------