summaryrefslogtreecommitdiff
path: root/src/components/include/application_manager/hmi_capabilities.h
diff options
context:
space:
mode:
authorJacob Keeler <jacob.keeler@livioradio.com>2017-09-26 17:28:34 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2017-09-26 17:40:06 -0400
commit907b72883e4d116d4b17b0e9e709b380c58c6f58 (patch)
tree4329e6a27056eca61e70c069263f45c2f3ff29aa /src/components/include/application_manager/hmi_capabilities.h
parentb45d016761fdcb571a4969aa50b2a56b5041c105 (diff)
downloadsdl_core-907b72883e4d116d4b17b0e9e709b380c58c6f58.tar.gz
Add `remoteControl` to HMICapability struct in Mobile APIfix/remote_control_supported
Diffstat (limited to 'src/components/include/application_manager/hmi_capabilities.h')
-rw-r--r--src/components/include/application_manager/hmi_capabilities.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/include/application_manager/hmi_capabilities.h b/src/components/include/application_manager/hmi_capabilities.h
index fb40367b00..1283584ef8 100644
--- a/src/components/include/application_manager/hmi_capabilities.h
+++ b/src/components/include/application_manager/hmi_capabilities.h
@@ -427,6 +427,20 @@ class HMICapabilities {
virtual bool video_streaming_supported() const = 0;
/*
+ * @brief Interface to store whether HMI supports remote control
+ *
+ * @param supported Indicates whether remote control is supported by HMI
+ */
+ virtual void set_rc_supported(const bool supported) = 0;
+
+ /*
+ * @brief Retrieves whether HMI supports remote control
+ *
+ * @return TRUE if it supported, otherwise FALSE
+ */
+ virtual bool rc_supported() const = 0;
+
+ /*
* @brief Interface used to store information regarding
* the navigation "System Capability"
*