summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteWindow.h
blob: 2561b45c1214d62d7fd70217a85a2ac0ae732800 (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
//
//  SDLDeleteWindow.h
//  SmartDeviceLink

#import "SDLRPCRequest.h"

NS_ASSUME_NONNULL_BEGIN

/**
 Deletes previously created window of the SDL application.
 
 @since SDL 6.0
 */
@interface SDLDeleteWindow : SDLRPCRequest

/**
 @param windowId A unique ID to identify the window. The value of '0' will always be the default main window on the main display and cannot be deleted.
 */
- (instancetype)initWithId:(NSUInteger)windowId;

/**
 A unique ID to identify the window.
 
 The value of '0' will always be the default main window on the main display and cannot be deleted.
 
 @see PredefinedWindows enum.
 */
@property (strong, nonatomic) NSNumber<SDLUInt> *windowID;

@end

NS_ASSUME_NONNULL_END