blob: d85c49d5cec6092184798a3c041c2bd1e689046b (
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
|
//
// RemoteControlManager.h
// SmartDeviceLink-Example-ObjC
//
// Created by Beharry, Justin (J.S.) on 8/1/22.
// Copyright © 2022 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
@class SDLManager;
@class SDLSoftButtonObject;
NS_ASSUME_NONNULL_BEGIN
@interface RemoteControlManager : NSObject
@property (assign, nonatomic, readonly, getter=isEnabled) BOOL enabled;
@property (copy, nonatomic, readonly) NSString *climateDataString;
- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithManager:(SDLManager *)manager isEnabled:(BOOL)enabled softButtons:(NSArray<SDLSoftButtonObject *> *)buttons;
- (void)start;
- (void)showClimateControl;
@end
NS_ASSUME_NONNULL_END
|