summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLockScreenPresenter.h
blob: 5e56f2479834e4b2b375c16c3d6bc47638f82dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  SDLLockScreenPresenter.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 7/15/16.
//  Copyright © 2016 smartdevicelink. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "SDLViewControllerPresentable.h"

NS_ASSUME_NONNULL_BEGIN

/**
 *  An instance of `SDLViewControllerPresentable` used in production (not testing) for presenting the SDL lock screen.
 */
@interface SDLLockScreenPresenter : NSObject <SDLViewControllerPresentable>

/**
 *  The view controller to be presented.
 */
@property (strong, nonatomic) UIViewController *lockViewController;

/**
 *  Whether or not `viewController` is currently presented.
 */
@property (assign, nonatomic, readonly) BOOL presented;

@end

NS_ASSUME_NONNULL_END