diff options
-rw-r--r-- | SmartDeviceLink/SDLManager.h | 1 | ||||
-rw-r--r-- | SmartDeviceLink/SDLNotificationConstants.h | 1 | ||||
-rw-r--r-- | SmartDeviceLink/SDLTouchManager.h | 4 | ||||
-rw-r--r-- | SmartDeviceLink/SmartDeviceLink.h | 4 |
4 files changed, 8 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLManager.h b/SmartDeviceLink/SDLManager.h index b62a025c3..ea6dc71e8 100644 --- a/SmartDeviceLink/SDLManager.h +++ b/SmartDeviceLink/SDLManager.h @@ -34,6 +34,7 @@ NS_ASSUME_NONNULL_BEGIN /// @param error the error is any exists typedef void (^SDLManagerReadyBlock)(BOOL success, NSError *_Nullable error); +/// SDLManager @interface SDLManager : NSObject /** diff --git a/SmartDeviceLink/SDLNotificationConstants.h b/SmartDeviceLink/SDLNotificationConstants.h index b9b7faa8f..bcaaaaa21 100644 --- a/SmartDeviceLink/SDLNotificationConstants.h +++ b/SmartDeviceLink/SDLNotificationConstants.h @@ -589,6 +589,7 @@ extern SDLNotificationName const SDLDidReceiveVehicleDataNotification; /// Name for a Waypoint notification RPC extern SDLNotificationName const SDLDidReceiveWaypointNotification; +/// Defines all of the RPC names @interface SDLNotificationConstants : NSObject /** diff --git a/SmartDeviceLink/SDLTouchManager.h b/SmartDeviceLink/SDLTouchManager.h index 4b9926fd3..d35296ef0 100644 --- a/SmartDeviceLink/SDLTouchManager.h +++ b/SmartDeviceLink/SDLTouchManager.h @@ -18,6 +18,10 @@ NS_ASSUME_NONNULL_BEGIN +/// Handler for touch events +/// +/// @param touch Describes a touch location +/// @param type The type of touch typedef void(^SDLTouchEventHandler)(SDLTouch *touch, SDLTouchType type); /// Touch Manager responsible for providing touch event notifications. diff --git a/SmartDeviceLink/SmartDeviceLink.h b/SmartDeviceLink/SmartDeviceLink.h index 0f0bde4e2..542c2a208 100644 --- a/SmartDeviceLink/SmartDeviceLink.h +++ b/SmartDeviceLink/SmartDeviceLink.h @@ -3,10 +3,10 @@ #import <UIKit/UIKit.h> -//! Project version number for SmartDeviceLink. +/// Project version number for SmartDeviceLink. FOUNDATION_EXPORT double SmartDeviceLinkVersionNumber; -//! Project version string for SmartDeviceLink. +/// Project version string for SmartDeviceLink. FOUNDATION_EXPORT const unsigned char SmartDeviceLinkVersionString[]; /***** RPCs *****/ |