diff options
author | jacobrau-livio <114027102+jacobrau-livio@users.noreply.github.com> | 2022-10-26 07:25:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 07:25:36 -0700 |
commit | a26dbc28de24ca7ad9fc4258394ebcdf4387bccc (patch) | |
tree | 5068069ea214ab14e8e805da9ef1e0860a985cab /Example Apps/Example ObjC/RemoteControlManager.h | |
parent | 3869a3028830035c4c1529149f88ba56d0b23153 (diff) | |
parent | b234b1b9c0e677740924a11776f9d07cf711fb3f (diff) | |
download | sdl_ios-master.tar.gz |
v7.6.0 Release
Diffstat (limited to 'Example Apps/Example ObjC/RemoteControlManager.h')
-rw-r--r-- | Example Apps/Example ObjC/RemoteControlManager.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Example Apps/Example ObjC/RemoteControlManager.h b/Example Apps/Example ObjC/RemoteControlManager.h new file mode 100644 index 000000000..d85c49d5c --- /dev/null +++ b/Example Apps/Example ObjC/RemoteControlManager.h @@ -0,0 +1,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 |