summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnDriverDistraction.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-08-27 16:15:33 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-08-27 16:15:33 -0400
commitebaf2cdcfd4792041764b116865f7d9a162423d3 (patch)
tree2e53f7c2f25b42e68fbc6e34f7bba1d86532c00e /SmartDeviceLink/SDLOnDriverDistraction.h
parent2cb26cbf102bdb309a67880182041393b5ae2559 (diff)
downloadsdl_ios-ebaf2cdcfd4792041764b116865f7d9a162423d3.tar.gz
In progress moving of files
Diffstat (limited to 'SmartDeviceLink/SDLOnDriverDistraction.h')
-rw-r--r--SmartDeviceLink/SDLOnDriverDistraction.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/SmartDeviceLink/SDLOnDriverDistraction.h b/SmartDeviceLink/SDLOnDriverDistraction.h
deleted file mode 100644
index f7df06bd8..000000000
--- a/SmartDeviceLink/SDLOnDriverDistraction.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// SDLOnDriverDistraction.h
-//
-
-#import "SDLRPCNotification.h"
-
-#import "SDLDriverDistractionState.h"
-
-/**
- Notifies the application of the current driver distraction state (whether driver distraction rules are in effect, or not).
-
- HMI Status Requirements:
-
- HMILevel: Can be sent with FULL, LIMITED or BACKGROUND
-
- AudioStreamingState: Any
-
- SystemContext: Any
-
- @since SDL 1.0
- */
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface SDLOnDriverDistraction : SDLRPCNotification
-
-/**
- The driver distraction state (i.e. whether driver distraction rules are in effect, or not)
- */
-@property (strong, nonatomic) SDLDriverDistractionState state;
-
-/**
- If enabled, the lock screen will be able to be dismissed while connected to SDL, allowing users the ability to interact with the app.
-
- Optional, Boolean
- */
-@property (strong, nonatomic) NSNumber<SDLBool> *lockScreenDismissalEnabled;
-
-/**
- Warning message to be displayed on the lock screen when dismissal is enabled. This warning should be used to ensure that the user is not the driver of the vehicle, ex. `Swipe up to dismiss, acknowledging that you are not the driver.`. This parameter must be present if "lockScreenDismissalEnabled" is set to true.
-
- Optional, String
- */
-@property (strong, nonatomic) NSString *lockScreenDismissalWarning;
-
-@end
-
-NS_ASSUME_NONNULL_END