summaryrefslogtreecommitdiff
path: root/Example Apps/Example ObjC/RemoteControlManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'Example Apps/Example ObjC/RemoteControlManager.h')
-rw-r--r--Example Apps/Example ObjC/RemoteControlManager.h29
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