summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Gluck <justin.gluck@livio.io>2019-11-01 13:48:24 -0400
committerJustin Gluck <justin.gluck@livio.io>2019-11-01 13:48:24 -0400
commit0a79d7ba061d1d6c8bbc769b44787be728328c32 (patch)
treed3eb4f32a12f0d0ad6462462fa7386e73466afce
parent86a5400ad33042b091680774ab38d95715cff47f (diff)
downloadsdl_ios-0a79d7ba061d1d6c8bbc769b44787be728328c32.tar.gz
no message
-rw-r--r--SmartDeviceLink/SDLManager.h1
-rw-r--r--SmartDeviceLink/SDLNotificationConstants.h1
-rw-r--r--SmartDeviceLink/SDLTouchManager.h4
-rw-r--r--SmartDeviceLink/SmartDeviceLink.h4
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 *****/