summaryrefslogtreecommitdiff
path: root/Example Apps/Example ObjC/RemoteControlManager.h
blob: 6b6d6af501300b639c3d1ce03a8735278e5a8d3c (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
//
//  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;

NS_ASSUME_NONNULL_BEGIN

@interface RemoteControlManager : NSObject

@property (copy, nonatomic, readonly) NSString *climateDataString;

- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithManager:(SDLManager *)manager;

- (void)start;
- (void)showClimateControl;

@end

NS_ASSUME_NONNULL_END